import { AllStyleProps } from '../../../utils/styledSystem'; /** * Creates a new Button component * @param props the Button props */ export declare const ButtonGroup: (props: ButtonGroupProps) => JSX.Element; export interface ButtonGroupProps extends AllStyleProps { id?: string; name: string; children?: JSX.Element[]; className?: string; disabled?: boolean; hasError?: boolean; onChange?: Function; onFocus?: Function; onBlur?: Function; type: 'button' | 'submit' | 'reset'; title: string; variant?: 'primary' | 'secondary' | 'destructive' | 'outline' | 'buttonGroup'; icon?: any; 'aria-haspopup'?: boolean; 'aria-expanded'?: boolean; }