interface StatProps { label: string; value: string | number; delta?: string; trend?: 'up' | 'down' | 'neutral'; description?: string; class?: string; } declare const Stat: import("svelte").Component; type Stat = ReturnType; export default Stat;