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