import type { ChatContainerProps } from "./types.js"; import "./ChatContainer.css"; /** * ChatContainer - fully assembled chat component, the main exportable component of the library. * Integrates Header, ChatContent, History and manages their state. * * @param props - component props * @returns React component */ export declare function ChatContainer(props: ChatContainerProps): import("react/jsx-runtime").JSX.Element;