export declare const sinceAndTillTimes: { since: string; till: string; }[]; interface BuildProgram { [key: string]: any; } export declare function buildProgram(overrides?: BuildProgram): { id: string; description: any; title: any; since: string; till: string; channelUuid: string; image: any; country: any; genre: any; rating: any; }; export interface BuildProgramWithPosition { overrides?: BuildProgram; program?: BuildProgram; } export declare function buildProgramWithPosition({ overrides, program, }?: BuildProgramWithPosition): { data: { index: number; channelIndex: number; channelPosition: { top: number; height: number; }; id: string; description: any; title: any; since: string; till: string; channelUuid: string; image: any; country: any; genre: any; rating: any; } | { index: number; channelIndex: number; channelPosition: { top: number; height: number; }; id: string; description: any; title: any; since: string; till: string; channelUuid: string; image: any; country: any; genre: any; rating: any; }; position: { height: any; left: any; top: any; width: any; } | { height: any; left: any; top: any; width: any; }; }; export declare function buildEpgWithPosition(): { data: { id: any; description: any; title: any; channelUuid: string; image: any; country: any; genre: any; rating: any; since: string; till: string; index: number; channelIndex: number; channelPosition: { top: number; height: number; }; }; position: { height: any; left: any; top: any; width: any; }; }[]; export {};