import type { ModuleConfigs } from './module-configs.js';
import type { GlobalStreamOptions } from './global-stream-options.js';
/**
 * Representation of the 'OrchestrationConfig' schema.
 */
export type OrchestrationConfig = {
    module_configurations: ModuleConfigs;
    /**
     * If true, the response will be streamed back to the client
     */
    stream?: boolean;
    stream_options?: GlobalStreamOptions;
};
//# sourceMappingURL=orchestration-config.d.ts.map