import { ExtractPropTypes, PropType } from 'vue'; /** * 属性 */ export declare const cardProps: { /** 标题 */ header: StringConstructor; /** 页脚 */ footer: StringConstructor; /** 主体样式 */ bodyStyle: PropType>; /** 主体类名 */ bodyClass: StringConstructor; /** 阴影 */ shadow: PropType | undefined>; /** 边框 */ bordered: BooleanConstructor; /** 标题栏样式 */ headerStyle: PropType>; /** 标题样式 */ titleStyle: PropType>; /** 页脚样式 */ footerStyle: PropType>; /** 内部表格是否弹性布局 */ flexTable: BooleanConstructor; }; export type CardProps = ExtractPropTypes;