import { MessageProps } from '@chatui/core'; export declare const createTextMessage: (text: string, show?: boolean, position?: string) => { type: string; content: { text: string; }; show: boolean; position: string; }; export declare const createSystemTextMessage: (text: string) => { type: string; content: { text: string; }; position: string; }; export declare const createCardMessage: (code: string, data: any, position?: string) => MessageProps; export declare const createQuickReplies: (list: any[]) => MessageProps; export declare const addQuickReplies: (messageList: any[], quickReplies: any[]) => void; export declare const appendTextMessage: (ctx: any, payload: any, isSystem?: boolean) => void;