/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { LLMContent } from "@breadboard-ai/types"; export { llmContentTransform }; type StreamType = "sse" | "text" | "json"; declare function llmContentTransform(stream: StreamType): TransformStream; //# sourceMappingURL=llm-content-transform.d.ts.map