import React from 'react'; import { NormalSizes, ButtonTypes } from '../utils/prop-types'; interface Props { disabled?: boolean; vertical?: boolean; ghost?: boolean; size?: NormalSizes; type?: ButtonTypes; className?: string; } declare const defaultProps: { disabled: boolean; vertical: boolean; ghost: boolean; size: "mini" | "small" | "medium" | "large"; type: "default" | "secondary" | "success" | "warning" | "error" | "abort" | "secondary-light" | "success-light" | "warning-light" | "error-light"; className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type ButtonGroupProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Pick>; export default _default;