/** * Creates a debounced function that delays invoking the provided function * until after the specified wait time has elapsed since the last invocation. * * @param func - The function to debounce * @param wait - The number of milliseconds to delay * @returns A debounced version of the function */ export declare function debounce any>(func: T, wait: number): (...args: Parameters) => void; //# sourceMappingURL=debounce.d.ts.map