/** * Multi-Request Flow Executor * * This module executes a multi-request flow by making a sequence of HTTP requests * and combining their responses into a single JSON output. */ import { MultiRequestFlow, MultiRequestFlowResult } from './types.js'; /** * Executes a multi-request flow by making all defined HTTP requests in parallel * and combining their responses into a single JSON output. * * @param flow - Multi-request flow configuration * @param requestIdentifier - The request identifier to substitute in templates * @returns Combined output with all request responses */ export declare function executeMultiRequestFlow(flow: MultiRequestFlow, requestIdentifier: string): Promise; //# sourceMappingURL=executor.d.ts.map