export declare function useTimeoutFn(handle: Fn, wait: number, native?: boolean): { readyRef: import("vue").Ref; stop: () => void; start: () => void; }; export declare function useTimeoutRef(wait: number): { readyRef: import("vue").Ref; stop: () => void; start: () => void; };