import React, { FunctionComponent } from 'react'; export interface IPillButtonProps { ariaLabel: string; /** * By default the Pill Button will use the Add icon when not selected. * When selected, the Pill Button will use the checkmark when not hovered, and the cancel icon on hover. * This can be overridden by setting iconName and hoverIconName. * If iconName is set but hoverIconName is not set, the iconName icon will be displayed * on both hover and not hover states. */ iconName?: string; hoverIconName?: string; disabled?: boolean; className?: string; isSelected?: boolean; onClick: (event: React.MouseEvent) => void; } export declare const PillButton: FunctionComponent; export default PillButton;