import { default as React } from 'react'; export declare const pillColorList: readonly ["red", "blue", "green", "purple", "medium-purple", "dark-purple"]; export type PillColorList = (typeof pillColorList)[number]; export type PillProps = { /** Available colors for the Pill */ color: PillColorList; /** The number to display inside the Pill */ number: number; /** Loading state for the Pill */ loading?: boolean; /** Optional prop to add a test id to the Pill for QA testing */ qaTestId?: string; }; declare const Pill: ({ color, number, loading, qaTestId, }: PillProps) => React.JSX.Element; export default Pill;