export declare class AxiomSchedulerEvent {
    readonly _id: Symbol;
    date: Date | null;
    data: any;
    color: string | null;
    locked: boolean;
    title: string | null;
    constructor(title?: string | null, date?: Date | null, data?: any, color?: string | null, locked?: boolean);
}
