export declare const throttledPromises: (asyncFunctions: Array<() => Promise>, onError?: (e: unknown) => void, chunkSize?: number, delay?: number) => { run: () => Promise; stop: () => void; };