import type { Snippet } from 'svelte'; type BadgeVariant = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info'; type BadgeSize = 'sm' | 'md' | 'lg'; interface BadgeProps { variant?: BadgeVariant; size?: BadgeSize; rounded?: boolean; dot?: boolean; class?: string; children?: Snippet; } declare const Badge: import("svelte").Component; type Badge = ReturnType; export default Badge;