import React from 'react'; import { ButtonTypes } from '../utils/prop-types'; interface Props { disabled?: boolean; vertical?: boolean; ghost?: boolean; type?: ButtonTypes; className?: string; } type NativeAttrs = Omit, keyof Props>; export type ButtonGroupProps = Props & NativeAttrs; declare const ButtonGroup: React.ForwardRefExoticComponent>; export default ButtonGroup;