/** * The StatusLabel component displays a simple status indicator with optional icon. * The component displays a label text with an optional icon, and supports two size variants: * - 'medium' (default): Standard size status label * - 'small': Compact size status label * * Also extends the props of `` element. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span */ export declare const StatusLabel: import("react").ForwardRefExoticComponent<{ label: string; icon?: import("react").ReactNode; status?: import("../../styled-system/recipes").StatusLabelSlotRecipeVariant["status"]; size?: import("../../styled-system/recipes").StatusLabelSlotRecipeVariant["size"]; className?: string; } & Omit, HTMLSpanElement>, "ref"> & import("react").RefAttributes>;