import { DesignStyle, PaletteMode } from '../../utils/types.ts'; interface ChatProps { apiUrl?: string; apiKey: string; paletteMode?: PaletteMode; primaryColor?: string; inContainer?: boolean; designStyle?: DesignStyle; inModal?: boolean; cacheMessages?: boolean; customButton?: boolean; } declare const Chat: ({ apiUrl, apiKey, paletteMode, primaryColor, inContainer, designStyle, inModal, cacheMessages, customButton, }: ChatProps) => import("react/jsx-runtime").JSX.Element; export default Chat;