export declare function useTimer(): {
    start: (callback: () => void, time: number) => void;
    stop: () => void;
};
