declare const asyncIterator: (array: any) => { [Symbol.asyncIterator]: () => { next: () => Promise<{ done: boolean; value: any; }>; }; }; export default asyncIterator;