/**
 * @author {@link https://github.com/jashkenas/underscore underscorejs}.
 * @version 1.7.0
 * @see {@link http://underscorejs.org/#throttle underscore.throttle(function, wait, [immediate])}
 * @param func
 * @param wait
 * @param options
 * @returns {throttled}
 */
export default function throttle(func: any, wait: any, options: any): () => any;
