import { IconName } from '../Icon/Icon'; import { Color, Elevation } from '../../interfaces'; export interface PillProps { /** The background color of the lozenge */ background: string; /** The color of the label */ color: Color; /** The icon inside the Pill. */ icon?: IconName; /** The text inside the Pill. Ideally, maximum two words long. */ label?: string; /** The size of the pill */ size?: 'small' | 'medium' | 'large'; /** Allow the Pill to take the size of its parent container */ stretch?: boolean; /** The elevation determining the shadow */ elevation?: Elevation; } /** A component which serves as a system status indicator or highlighter */ declare const Pill: ({ label, color, icon, background, size, stretch, elevation, ...other }: PillProps) => JSX.Element; export default Pill;