import type { AIStudioChatProps } from "./types.js"; /** * AIStudioChat - a ready-to-use chat component with built-in OpenAI streaming support. * * Wraps ChatContainer and handles all state internally: streaming, message history, * multi-chat management, and cancellation. Requires only an `apiUrl` to start working. * * @param props - component props * @returns React component */ export declare function AIStudioChat(props: AIStudioChatProps): import("react/jsx-runtime").JSX.Element;