/** * Fan-Out Pattern - Parallel processing with concurrency control */ import { FanOutOptions, FanOutResult } from "../types/fan-out"; /** * Fan-Out - Process array of items in parallel */ export declare function fanOut(options: FanOutOptions): Promise>; //# sourceMappingURL=fan-out.d.ts.map