import { BrandTheme, HelphubStyleConfig } from '../CustomHelpHub.type'; interface QuestThemeData { accentColor?: string; borderRadius?: string; buttonColor?: string; images?: string[]; } type Props = { message: { senderRole: "ASSISTANT" | "USER" | "ADMIN" | "SYSTEM"; 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;