export declare function useCountdown(count: number): { start: () => void; reset: () => void; restart: () => void; clear: () => void; stop: () => void; currentCount: import("vue").Ref; isStart: import("vue").Ref; };