type CancelableDebounce = (() => void) & { cancel: () => void; }; declare function debounce(func: Function, wait: number, immediate?: boolean): CancelableDebounce; export { debounce };