import React from 'react'; export declare type ButtonGroupProps = { /** Label for the widget. Optional. */ label?: string; /** How buttons are displayed. Vertical or Horizontal */ orientation?: 'vertical' | 'horizontal'; /** Options that will be presented as buttons. */ options: Array; /** The currently selected option. */ selectedOption: string; /** Action to take when an option is selected by the user. */ onOptionSelected: (option: string) => void; /** Additional widget container styles. Optional. */ containerStyles?: React.CSSProperties; }; /** * A simple group of buttons in which only a single * button can be selected at any given time. */ export default function ButtonGroup({ label, orientation, options, selectedOption, onOptionSelected, containerStyles, }: ButtonGroupProps): JSX.Element; //# sourceMappingURL=ButtonGroup.d.ts.map