export declare class CountdownTimer { dateTime: CountdownTimerDateTime; styles: CountdownTimerStyles; } export declare class CountdownTimerDateTime { date: string; time: string; timezone: string; } export declare class CountdownTimerStyles { fontFamily: string; fontSize: number; fontColor: string; backgroundColor: string; backgroundImage: string; layout: TIMER_LAYOUT_ENUM; customLayoutAllowed?: boolean; } export declare enum TIMER_LAYOUT_ENUM { default = 1, overlay = 2, modern = 3 }