import { type PropType, type StyleValue } from 'vue'; export interface CardProps { rootStyle?: StyleValue; rootClass?: string; title?: string; extra?: string; footer?: string; } export declare const cardProps: { rootStyle: PropType; rootClass: StringConstructor; title: StringConstructor; extra: StringConstructor; footer: StringConstructor; }; export interface CardEmits { (e: 'click', event: any): void; } export interface CardSlots { default(props: Record): any; title(props: Record): any; extra(props: Record): any; footer(props: Record): any; }