type Trend = 'up' | 'down' | 'flat'; interface Props { label: string; value: string | number; valueClass?: string; labelClass?: string; hint?: string; change?: string | number; trend?: Trend; icon?: import('svelte').Snippet; actions?: import('svelte').Snippet; change_snippet?: import('svelte').Snippet<[{ trend: Trend; change: string | number; }]>; class?: string; hintClass?: string; changeClass?: string; 'aria-label'?: string; 'aria-describedby'?: string; } declare const StatCard: import("svelte").Component; type StatCard = ReturnType; export default StatCard;