import { type SlotsType, type ExtractPropTypes } from 'vue'; export declare const cardProps: {}; export type CardProps = ExtractPropTypes; export interface CardSlots { default: {}; } export declare const cardSlots: SlotsType; export declare const cardEmits: { click: (event: MouseEvent) => boolean; }; export type CardEmits = typeof cardEmits;