import Call from '../Call';
import ChargingProfilePurposeType from '../../enum/ChargingProfilePurposeType';
export declare type ClearChargingProfilePayload = {
    id?: number;
    connectorId?: number;
    chargingProfilePurpose?: ChargingProfilePurposeType;
    stackLevel?: number;
};
export default class ClearChargingProfile extends Call {
    uniqueId: string;
    payload?: ClearChargingProfilePayload | undefined;
    constructor(uniqueId?: string, payload?: ClearChargingProfilePayload | undefined);
}
