import type { RefObject } from 'react'; export declare const useCountDown: (mountedRef: RefObject, name?: string, countDown?: number) => { inCountDown: boolean; timeLeft: number; startCountDown: (countDown: number) => void; };