export declare function throttle void>(fn: T, wait: number, options?: { leading?: boolean; trailing?: boolean; }): { throttled: (...parameters: Parameters) => void; cancel: () => void; }; export declare function noop(): void;