export interface PillType {
    label: string;
    active: boolean;
}
export interface WmePillGroupProps {
    label?: string;
    pills: PillType[];
    onSelect: (selectedPills: PillType[]) => void;
}
export default function PillGroup(props: WmePillGroupProps): JSX.Element;
//# sourceMappingURL=pill-group.d.ts.map