/** * Creates a debounced function that delays invoking func until after delay milliseconds * have elapsed since the last time the debounced function was invoked. * @param func The function to debounce * @param delay The debounce delay in miliseconds * @param immediate If true invokes the debounce function on the leading edge of the timeout. */ export declare function debounce(func: (...args: Args) => void, delay: number, immediate?: boolean): (...args: Args) => void; //# sourceMappingURL=debounce.d.ts.map