import Call from '../Call';
import { ChargingProfile } from '../../type/ChargingProfile';
export declare type SetChargingProfilePayload = {
    connectorId: number;
    csChargingProfiles: ChargingProfile;
};
export default class SetChargingProfile extends Call {
    payload?: SetChargingProfilePayload | undefined;
    constructor(payload?: SetChargingProfilePayload | undefined);
}
