export interface StatusPillProps {
    /** The status to convey. */
    status: 'possible' | 'impossible' | 'new';
    /** The variant of the pill. */
    variant?: 'default' | 'bar';
    /** 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-runtime").JSX.Element;
