import type { Series, SyncSeries } from './types.js'; export declare function flattenSync(input: SyncSeries>): Generator; export declare function flattenAsync(input: Series>): AsyncGenerator>; /** Flattens a series of series by one level deep. */ export declare namespace flatten { const sync: typeof flattenSync; const async: typeof flattenAsync; } //# sourceMappingURL=flatten.d.ts.map