export default function useCountDown(seconds: any): {
    count: number;
    start: () => void;
    stop: () => void;
};
