interface ValuePillProps {
    children: string;
    onRemove: () => void;
    disabled?: boolean;
}
export declare const ValuePill: import("react").ForwardRefExoticComponent<ValuePillProps & import("react").RefAttributes<HTMLSpanElement>>;
export {};
