/** * Creates a debounced function that delays the invocation of a function */ export declare const debounce: void>(cb: T, debounceMs: number) => (...args: Parameters) => void;