import CallResult from '../CallResult';
import ChargingProfileStatus from '../../enum/ChargingProfileStatus';
export declare type SetChargingProfileResPayload = {
    status: ChargingProfileStatus;
};
export default class SetChargingProfileResult extends CallResult {
    uniqueId: string;
    payload: SetChargingProfileResPayload;
    constructor(uniqueId: string, payload: SetChargingProfileResPayload);
}
