export declare class KclsuCountdown { /** The date to countdown to. Must match date string format */ date: string; /** Optional: set a fixed font-size for tablet, desktop and wider. */ fontsize: any; /** Optional: set a colour for the text beneath the countdown. */ textcolour: any; /** The text beneath the countdown */ text: string; /** The width of the countdown clock - in Pixels ONLY */ width: string; /** The margin of the countdown clock */ margin: string; /** Give the message text a white block background */ msgbg: boolean; countDownDate: Date; timer: any; timeObject: { days: number; hours: number; minutes: number; seconds: number; }; componentDidLoad(): void; calculateTimeRemaining(): number; calculateTimes(x: any): { days: number; hours: number; minutes: number; seconds: number; }; render(): any; }