/**
 * [throttle description]
 * @method throttle
 * @param  {Function} callback [description]
 * @param  {number}   delay    [description]
 * @return {Function}          [description]
 */
export declare function throttle(callback: Function, delay: number): (args: Array<any>) => void;
