export default function useDebounce(): { debounce: (initialFunction: (...args: any) => any, delay: number) => (...args: any) => void; };