import type { DefineComponent } from "vue"; /** Card component props */ export interface CardProps { /** default: false */ bordered?: boolean; title?: string; icon?: string | any[]; } /** Card Vue 3 component */ declare const Card: DefineComponent; export default Card;