import type { Procedure } from '../typings/procedure'; /** * @param callback The callback function to wrap. * @param time The timeout in ms. * @returns A version of the function that will postpone execution until after the time has elapsed since last invoked. */ declare const debounce: (callback: Procedure, time: number) => Procedure; export default debounce; //# sourceMappingURL=debounce.d.ts.map