import ChargingRateUnitType from '../../enum/ChargingRateUnitType';
import Call from '../Call';
export declare type GetCompositeScheduleResPayload = {
    connectorId: number;
    duration: number;
    chargingRateUnit?: ChargingRateUnitType;
};
export default class GetCompositeSchedule extends Call {
    uniqueId: string;
    payload?: GetCompositeScheduleResPayload | undefined;
    constructor(uniqueId?: string, payload?: GetCompositeScheduleResPayload | undefined);
}
