export declare const throttle: <F extends (...args: any[]) => void>(fn: F, ms?: number) => [fn: F, stop: () => void];
