import React from 'react'; import Flex from '../Flex/Flex'; import { SelectionButtonProps } from './SelectionButton'; import { CreateProps } from '../../types/utils/CreateProps'; declare type SelectionButtonGroupProps = CreateProps<{ /** How many SelectionButtons should be shown side by side in one row */ sideBySide?: number; /** List of SelectionButton contents */ options: SelectionButtonProps[]; /** onClick handler for the group. Returns the event and clicked option */ onClick: (event: React.SyntheticEvent, option: SelectionButtonProps) => void; /** Enables smaller height variant of the SelectionButtons */ narrow?: boolean; /** Variant with dropshadow. Disabled options don't show the shadow */ withShadow?: boolean; }, typeof Flex, 'wrapContent'>; declare const SelectionButtonGroup: React.FunctionComponent; export default SelectionButtonGroup;