import type { ChatMessage, ChatTranslations } from "@genexus/chameleon-controls-library"; export declare const ASSISTANT_RESPONSE_SHORT_MARKDOWN = "\n### Code block {#code-block}\nTo create code blocks, you\u2019ll use three backticks (` ``` `) or three tildes (`~~~`) on the lines before and after the code block.\n\n```json\n{\n \"firstName\": \"John\",\n \"lastName\": \"Smith\",\n \"age\": 25\n}"; export declare const ASSISTANT_NAME = "Nexa"; export declare const userMessageChatModel: ChatMessage[]; export declare const assistantMessageChatModel: ChatMessage[]; export declare const assistantMessageWarningChatModel: ChatMessage[]; export declare const assistantMessageSuccessChatModel: ChatMessage[]; export declare const errorMessageChatModel: ChatMessage[]; export declare const assistantWaitingChatModel: ChatMessage[]; export declare const chatTranslations: ChatTranslations; export declare const allMessagesModel: ChatMessage[]; export declare const ASSISTANT_RESPONSE_MARKDOWN = "\n###### Code block {#code-block}\nTo create code blocks, you\u2019ll use three backticks (` ``` `) or three tildes (`~~~`) on the lines before and after the code block.\n\n```\n{\n \"firstName\": \"John\",\n \"lastName\": \"Smith\",\n \"age\": 25\n}\n```\n\nAnother way to create code blocks is to indent every line of the block by at least four spaces or one tab.\n\n \n
\n \n \n\n\n###### Syntax Highlighting {#syntax-highlighting}\nThis feature allows you to add color highlighting for whatever language your code was written in.\nTo add syntax highlighting, specify a language next to the backticks before the fenced code block.\n\n```json\n{\n \"firstName\": \"John\",\n \"lastName\": \"Smith\",\n \"age\": 25\n}\n```\n\n```javascript\nimport React from 'react'\nimport ReactDOM from 'react-dom'\nimport Markdown from 'react-markdown'\nimport rehypeHighlight from 'rehype-highlight'\n\nconst markdown = `\n# Your markdown here\n`\n\nReactDOM.render(\n