/**
 * @description attachment element
 * @author wangfupeng
 */
declare type EmptyText = {
    text: '';
};
export declare type PDFElement = {
    type: 'importPdf';
    src: string;
    shortcode: string;
    children: EmptyText[];
};
export {};
