import type { DefineComponent } from "vue"; /** StatCard component props */ export interface StatCardProps { title?: string; /** default: 0 */ precision?: number; /** default: undefined */ items?: any[]; separator?: string; statNumberType?: string; reverse?: boolean; /** default: false */ bordered?: boolean; } /** StatCard Vue 3 component */ declare const StatCard: DefineComponent; export default StatCard;