/** * Creates a throttled function that invokes `func` at most once per `wait` milliseconds. * * @template T - The type of the function to throttle. * @param {T} func - The function to throttle. * @param {number} [wait=300] - The throttle interval in milliseconds. * @returns {(...args: Parameters) => void} - The throttled function. */ export declare const throttle: void>(func: T, wait?: number) => ((...args: Parameters) => void); export { }