import { ExtractPropTypes, PropType, StyleValue } from 'vue'; import type Card from './Card.vue'; export declare type CardShadow = 'always' | 'hover' | 'none'; export declare const cardEmits: {}; export declare const cardProps: { header: { type: StringConstructor; default: string; }; bodyStyle: { type: PropType; default: string; }; shadow: { type: PropType; default: string; }; }; export declare type CardProps = ExtractPropTypes; export declare type CardEmits = typeof cardEmits; export declare type CardInstance = InstanceType;