import type { AnyFunction } from './types';
export default function useDebounce(wait?: number, leading?: boolean): (newFunction: AnyFunction, scope?: AnyFunction, args?: Array<any>) => void;
