/**
 * Tail based throttle which caches the args of the last call and updates
 */
export declare function throttle<T extends (...args: any[]) => void>(callback: T, delay: number): (...args: Parameters<T>) => void;
