import * as React from "react"; export declare const enum PillGroupOverflow { clip = 0, wrap = 1, fade = 2 } export interface IPillGroupProps { /** * Optional class name to add to the pill group. */ className?: string; /** * Optional mouse-enter handler */ onMouseEnter?: (event: React.MouseEvent) => void; /** * Optional mouse-leave handler */ onMouseLeave?: (event: React.MouseEvent) => void; /** * Set the overflow behavior. * * @default PillGroupOverflow.clip */ overflow?: PillGroupOverflow; }