declare type CancellerType = (foo: () => void) => void; export declare function debounce(callback: (...args: any[]) => void, delay?: number, canceller?: CancellerType): (...args: any[]) => void; export {};