export declare function createCountdown(initialSeconds?: number): { readonly timeLeft: number; readonly isRunning: boolean; start: () => void; stop: () => void; reset: (seconds: number) => void; destroy: () => void; };