/**
 *
 * @param {Function} func
 * @param {number} delay
 */
export default function debounce(func: any, delay?: number): (...args: any) => void;
