/** * @description attachment element * @author wangfupeng */ declare type EmptyText = { text: ''; }; export declare type AttachmentElement = { type: 'attachment'; fileName: string; link: string; children: EmptyText[]; }; export {};