export default debounce; declare function debounce(func: any, wait: any, options: any): { (...args: any[]): any; cancel: () => void; flush: () => any; pending: () => boolean; };