import type { ModuleResults } from './module-results.js';
import type { LLMModuleResultStreaming } from './llm-module-result-streaming.js';
/**
 * Representation of the 'CompletionPostResponseStreaming' schema.
 */
export type CompletionPostResponseStreaming = {
    /**
     * ID of the request
     */
    request_id: string;
    module_results?: ModuleResults;
    orchestration_result?: LLMModuleResultStreaming;
} & Record<string, any>;
//# sourceMappingURL=completion-post-response-streaming.d.ts.map