export interface ButtonSelectProps { /** Name of the select group */ name: string; /** The select event handler */ onChange?: (name: string, selectedOptions: Array) => void; /** The options array */ options: Array; /** The placeholder for the search */ placeholder?: string; /** The selected options array */ selectedOptions?: Array; /** The max number of select buttons to display. When options are greater than this number display a search bar. */ maxVisible?: number; /** Is Button Select disabled */ disabled?: boolean; } declare const ButtonSelect: ({ options, name, placeholder, selectedOptions, maxVisible, disabled, onChange, ...other }: ButtonSelectProps) => JSX.Element; export default ButtonSelect;