import { BrandTheme, HelphubStyleConfig } from '../HelpHub.type'; interface QuestThemeData { accentColor?: string; borderRadius?: string; buttonColor?: string; images?: string[]; } type Props = { message: { senderRole: "ASSISTANT" | "USER" | "ADMIN"; content: string; timestamp: string; }; index: number; fontSize: number | string; QuestThemeData?: QuestThemeData; BrandTheme?: BrandTheme; styleConfig?: HelphubStyleConfig; }; declare const HandleUserChat: ({ message, index, fontSize, QuestThemeData, styleConfig, BrandTheme }: Props) => import("react/jsx-runtime").JSX.Element; export default HandleUserChat;