export declare function debounce(cb: () => void): { timeout: number; cancel(): void; call(delay: number): void; };