import type { CompositeScheduleDto, TenantDto } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class CompositeSchedule extends Model implements CompositeScheduleDto {
    static readonly MODEL_NAME: string;
    stationId: string;
    evseId: number;
    duration: number;
    scheduleStart: string;
    chargingRateUnit: string;
    chargingSchedulePeriod: [object, ...object[]];
    customData?: object | null;
    tenantId: number;
    tenant?: TenantDto;
    static setDefaultTenant(instance: CompositeSchedule): void;
    constructor(...args: any[]);
}
