declare type LabelPillProps = { aria?: { [key: string]: string; }; className?: string; data?: { [key: string]: string; }; id?: string; label?: string; pillValue?: string; variant: "error" | "info" | "neutral" | "primary" | "success" | "warning"; }; declare const LabelPill: (props: LabelPillProps) => JSX.Element; export default LabelPill;