import { GlobalProps } from '../utilities/globalProps'; declare type PillProps = { aria?: { [key: string]: string; }; className?: string; data?: { [key: string]: string; }; id?: string; text: string; variant?: "success" | "warning" | "error" | "info" | "neutral" | "primary"; textTransform?: "none" | "lowercase"; } & GlobalProps; declare const Pill: (props: PillProps) => JSX.Element; export default Pill;