import type { LLMModuleResultSynchronous } from './llm-module-result-synchronous.js';
import type { LLMModuleResultStreaming } from './llm-module-result-streaming.js';
/**
 * Output of LLM module. Follows the OpenAI spec.
 */
export type LlmModuleResult = LLMModuleResultSynchronous | LLMModuleResultStreaming;
//# sourceMappingURL=llm-module-result.d.ts.map