export declare const BADGE_VARIANTS: readonly ["primary", "secondary", "success", "danger", "warning", "info", "merged"]; export type BadgeVariantType = (typeof BADGE_VARIANTS)[number]; import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; interface Props extends HTMLAttributes { variant?: BadgeVariantType; /** Allows modifying the size of the badge. Supports a smaller variant. */ small?: boolean; /** Render the badge as a rounded pill. */ pill?: boolean; children?: Snippet; custom?: Snippet<[{ className: string; }]>; } /** The root element of this component can be target via the [data-badge] selector. */ declare const Badge: import("svelte").Component; type Badge = ReturnType; export default Badge;