/** * Creates a throttled function that only invokes func at most once per every `wait` milliseconds. * Function is called on the beginning of `wait` period. */ export declare const throttle: (wait: number, func: (...args: TS) => void) => (this: any, ...args: TS) => void;