type Procedure = (...args: any[]) => void; export declare function debounce(func: F, waitMilliseconds: number): { (this: ThisParameterType, ...args: Parameters): void; cancel: () => void; }; export {};