/// /** * Type of ChatContainerProps. * * @param children - The children of the chat container. * @param theme - The theme of the chat container. Here we force the theme to be the same as the theme of the chat container. Default is light. */ type ChatContainerProps = { children: JSX.Element; theme: string; }; export declare function ChatContainer({ children, theme }: ChatContainerProps): import("react/jsx-runtime").JSX.Element; export {};