import type Card from './card.vue'; import type { ExtractPropTypes } from 'vue'; export declare const cardProps: { header: { type: StringConstructor; default: string; }; border: { type: BooleanConstructor; default: boolean; }; shadow: { type: PropType<"hover" | "always" | "none">; default: string; }; tips: { type: StringConstructor; }; }; export type CardProps = ExtractPropTypes; export type CardInstance = InstanceType;