import type { BasicType } from '../../_utils'; import type { PropType, ExtractPropTypes } from 'vue'; export declare const Props: { /** 展示的内容 */ readonly content: BasicType, string | null>; /** 内容文字大小 */ readonly contentSize: BasicType, string | number | null>; /** 内容文字颜色 */ readonly contentColor: BasicType, string | null>; /** 自定义图片地址 */ readonly imageSrc: BasicType, string | null>; /** 自定义图片尺寸 */ readonly imageSize: BasicType, string | number | null>; /** 自定义背景色 */ readonly background: BasicType, string | null>; /** 自定义 icon 大小 */ readonly iconSize: BasicType, string | number | null>; }; /** empty 组件 props 类型 */ export type EmptyProps = ExtractPropTypes;