export type BadgeVariant = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'outline'; import type { Snippet } from 'svelte'; type $$ComponentProps = { /** Visual intent. Default: `default`. */ variant?: BadgeVariant; /** Turns the badge into a link. */ href?: string; /** For a linked badge, open in a new tab with `rel="noopener"`. */ external?: boolean; children: Snippet; }; declare const Badge: import("svelte").Component<$$ComponentProps, {}, "">; type Badge = ReturnType; export default Badge;