declare const _default: (callback: any, time: number) => (event: any) => void; /** * @param {Function} callback - Callback funtion to be run. * @param {Number} time - Timeout time before executing the callback. * @description A debounce function to delay specified callback based on specified timeout. */ export default _default;