/** * ChatEvent - Display chat event notifications * * Used for system messages like "Conversation started", "Agent joined", etc. * These are informational messages that are not part of the conversation flow. */ interface Props { /** Event text to display */ text?: string; /** Additional CSS class names */ className?: string; /** Element ID */ id?: string; } declare const _default: import('vue').DefineComponent & Readonly<{}>, { id: string; className: string; text: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; export default _default;