interface Stat { value: string | number; label: string; } interface Props { icon: string; title: string; primaryStats: Stat[]; secondaryStats?: Stat[]; color: 'blue' | 'purple' | 'amber' | 'emerald' | 'red'; onClick?: () => void; } declare const __VLS_export: import("vue").DefineComponent & Readonly<{}>, { secondaryStats: Stat[]; onClick: () => void; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;