import { textColors, textSize } from '../Text/Text'; type Props = { onChange: Function; buttons: { label: string; value: string; }[]; defaultValue?: string | string[]; labelActiveColor?: textColors; labelDeactiveColor?: textColors; activeButtonColor?: string; multiSelect?: boolean; textSize?: textSize; isShadow?: boolean; }; declare const ButtonGroup: { ({ buttons, onChange, defaultValue, labelDeactiveColor, labelActiveColor, activeButtonColor, multiSelect, textSize, isShadow }: Props): JSX.Element; defaultProps: { labelActiveColor: string; labelDeactiveColor: string; activeButtonColor: string; }; }; export default ButtonGroup;