/** * Debounces a callback. * @param cb * @param ms * @param id */ export declare function debounce(cb: (() => void), ms: number, id: string): void;