export type SetTimeoutReturn = ReturnType; export declare function debounce(fn: (...args: A) => void, time: number): (...args: A) => void; export declare function throttle(fn: (...args: A) => void, time: number): (...args: A) => void;