/** * Simple `debounce` with trailing: false behavior * @param {Function} fn Function to invoke after `wait` ms * @param {number} wait How much `ms` to wait */ export declare function debounce(fn: Function, wait: number): (...arg: any[]) => void;