import type { ExtractPropTypes, PropType, StyleValue } from 'vue'; import type { CardShadow } from './interface'; export declare const Props: { readonly header: { readonly type: StringConstructor; readonly default: ""; }; readonly bodyStyle: { readonly type: PropType; readonly default: ""; }; readonly shadow: { readonly type: PropType; readonly default: "hover"; }; }; export type CardProps = ExtractPropTypes;