/** * 处理图片节点 * @param currentElement - 当前处理的图片元素,包含url和alt属性 * @returns 返回格式化的图片节点对象 */ export declare const handleImage: (currentElement: any) => import("../../../..").CardNode | { text: string; }; /** * 处理附件链接 */ export declare const handleAttachmentLink: (currentElement: any) => { type: string; url: string; size: number; children: { type: string; children: { text: string; }[]; }[]; name: any; } | null; /** * 处理链接卡片 */ export declare const handleLinkCard: (currentElement: any, config: any) => any;