import type { ChatProviderProps } from "@openuidev/react-headless"; import { ThemeProps } from "../ThemeProvider"; import type { SharedChatUIProps } from "./types"; type ThemeWrapperProps = { theme?: ThemeProps; disableThemeProvider?: boolean; }; export type ChatLayoutProps = Omit & SharedChatUIProps & ThemeWrapperProps & Extra; export declare function withChatProvider(WrappedComponent: React.ComponentType): { (props: ChatLayoutProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=withChatProvider.d.ts.map