/** * StatusBadge - Generic status indicator badge * * Provides pre-defined color schemes for common status domains (invoice, project, etc.) * or allows custom styling via CSS variables. */ import type { StatusType } from './types.js'; /** Props for StatusBadge component */ export interface Props { /** The status value to display */ status: string; /** Pre-defined color scheme type */ type?: StatusType; /** Badge size */ size?: 'sm' | 'md' | 'lg'; /** Visual variant */ variant?: 'filled' | 'outline'; /** Optional custom label (defaults to status value) */ label?: string; } declare const StatusBadge: import("svelte").Component; type StatusBadge = ReturnType; export default StatusBadge; //# sourceMappingURL=StatusBadge.svelte.d.ts.map