/// import './Pill.less'; interface IPillProps { text: string; bgColor?: string; textColor?: string; } export declare function Pill({ text, bgColor, textColor }: IPillProps): JSX.Element; export declare const AnimatingPill: (props: IPillProps) => JSX.Element; export {};