import type { BasicType } from '../../_utils'; import type { PropType, ExtractPropTypes } from 'vue'; import type { ExpandCardImageList, ExpandCardChange } from './interface'; export declare const Props: { /** 需要展示的图片列表 */ readonly imageList: BasicType, ExpandCardImageList | null>; /**是否显示圆角 */ readonly round: BasicType; /** 当前显示的索引 */ readonly expandIndex: BasicType; /** 左下角文字的颜色 */ readonly color: BasicType, string | null>; /** 是否纵向排列 */ readonly vertical: BasicType; /** 自定义宽度 */ readonly width: BasicType, string | number | null>; /** 自定义高度 */ readonly height: BasicType, string | number | null>; /** 点击切换的回调 */ readonly onChange: BasicType, null>; }; /** expand-card 组件 props 类型 */ export type ExpandCardProps = ExtractPropTypes;