declare const useCountdown: (key: string, groupKey?: string, initialTime?: number) => { timeLeft: number; startCountdown: () => void; stopCountdown: () => void; resetCountdown: () => void; diffTimeLeft: (key: string) => number; }; export default useCountdown;