/** * @description link-card element * @author wangfupeng */ import { SlateText } from '@wangeditor/editor'; declare type EmptyText = { text: ''; }; export declare type SwiperCardElement = { type: 'swiper-card'; mode?: string; imgs?: string; children: EmptyText[]; }; export declare type SwiperElement = { type: 'swiper-item'; url: string; target?: string; children: SlateText[]; }; export {};