export declare class ScheduleDataSource {
    value: string;
    title: string;
    detail: string;
    note: string;
    allday: boolean;
    blocked: boolean;
    status: string;
    type: string;
    date: {
        start: number;
        end: number;
    };
    tags: Array<ShcheduleDataSourceTags>;
}
export declare class ShcheduleDataSourceTags {
    title: string;
    color: string;
}
//# sourceMappingURL=datasource.type.d.ts.map