import type { AriaLive } from '../../../types/index.js'; interface Props { children?: import('svelte').Snippet; class?: string; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; 'aria-live'?: AriaLive; 'aria-hidden'?: boolean; variant?: 'default' | 'success' | 'warning' | 'error' | 'info'; disabled?: boolean; } declare const Badge: import("svelte").Component; type Badge = ReturnType; export default Badge;