export default function debounce(cb: (...args: any[]) => void, wait?: number, immediate?: boolean): (...args: any[]) => void;
