type UseCountDownReturn = { secondsLeft: number; startCountDown: (seconds: number) => void; stopCountDown: () => void; resetCountDown: () => void; }; declare function useCountDown(): UseCountDownReturn; export { useCountDown };