import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; import type { BadgeSize, BadgeVariant } from '../../types-generic'; interface Props extends Omit, 'class'> { /** Visual variant for color and styling. */ variant?: BadgeVariant; /** Size of the badge. */ size?: BadgeSize; /** The badge content. */ children?: Snippet; } declare const Badge: import("svelte").Component; type Badge = ReturnType; export default Badge; //# sourceMappingURL=Badge.svelte.d.ts.map