import { Model } from 'sequelize-typescript';
export declare class CompositeSchedule extends Model {
    static readonly MODEL_NAME: string;
    stationId: string;
    evseId: number;
    duration: number;
    scheduleStart: string;
    chargingRateUnit: string;
    chargingSchedulePeriod: [object, ...object[]];
    customData?: object | null;
}
