import type { Snippet } from 'svelte'; type ColorVariant = 'primary' | 'success' | 'warning' | 'danger' | 'info'; type StyleVariant = 'default' | 'outline' | 'filled'; interface Props { label: string; value: string | number; icon?: import('svelte').Component<{ class?: string; }>; trend?: { value: number; label?: string; }; loading?: boolean; color?: ColorVariant; variant?: StyleVariant; /** Optional footer snippet for additional content below the value */ footer?: Snippet; class?: string; } declare const StatsCard: import("svelte").Component; type StatsCard = ReturnType; export default StatsCard;