export declare type Iterator = { next: () => ({ done: boolean; value?: T; }); };