import * as React from "react"; import { type BadgeProps } from "../badge/badge"; export type StatusVariant = "default" | "secondary" | "success" | "warning" | "destructive" | "info"; export interface StatusProps extends Omit { /** Status variant matching Badge semantic colors */ variant?: StatusVariant; /** Display label for the status */ label: React.ReactNode; /** Show pulsing animation on the indicator */ pulse?: boolean; } export declare const Status: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=status.d.ts.map