export interface StatusPillProps { /** The status to convey. */ status: 'possible' | 'impossible' | 'new' | 'dark'; /** The variant of the pill. */ variant?: 'default' | 'bar' | 'compact'; /** A description of the status. */ label: string; } /** Represents a component for a status pill. */ export declare function StatusPill({ status, variant, label }: StatusPillProps): import("react").JSX.Element;