/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; interface StreamOutputProps { readonly text: string; } export declare function StreamOutput({ text }: StreamOutputProps): React.ReactElement; export {};