import { ExtractPropTypes, PropType } from 'vue'; declare const emptyProps: { /** * 自定义图片 */ readonly image: { readonly type: StringConstructor; readonly default: ""; }; /** * 图片宽度 */ readonly imageWidth: { readonly type: PropType; readonly validator: (value: number | string) => boolean; readonly default: "50%"; }; /** * 描述 */ readonly description: { readonly type: StringConstructor; readonly default: ""; }; /** * 上下的内边距 */ readonly verticalPadding: { readonly type: NumberConstructor; readonly validator: (value: number) => boolean; readonly default: 20; }; }; export type EmptyProps = ExtractPropTypes; export { emptyProps };