type Func = (...args: any[]) => any;
export default function useTimeout(fn: Func, delay?: number): () => void;
export {};
