declare const brand: unique symbol; export type Brand = T & { [brand]: TBrand; }; export declare function isBrand(_ignore: string): _ignore is T; export type ScheduledEvent = { startDate: DateString; endDate: DateString; startTime: TimeString; endTime: TimeString; title: string; text: string; ministry: string; location: string; }; export type ScheduledScreen = { start: Date; end: Date; action: string; data?: string; }; export type RawScheduledScreen = { startDate: DateTimeString; endDate: DateTimeString; startTime: DateTimeString; endTime: DateTimeString; action: string; data?: string; }; export type DateTimeString = Brand; export type DateString = Brand; export type TimeString = Brand; export {};