/** * Debounce utility function, ensures that the function passed in is only called once the function stops being called and the delay has expired. */ export declare const debounce: (func: Function, delay: number) => Function;