import type { proto } from '../../WAProto/index.js'; export type RichResponseItem = { text: string } | { code: string; language?: string }; export type RichResponseContent = { richResponse?: RichResponseItem[]; text?: string; code?: string; language?: string; forwarded?: boolean; botJid?: string; contextInfo?: proto.IContextInfo; }; export declare const tokenizeCode: (code: string, language?: string) => Array<{ highlightType: number; codeContent: string }>; export declare const prepareRichResponseMessage: (content: RichResponseContent) => proto.IMessage;