import * as React from 'react'; import { ButtonSize, ButtonType, ButtonShape } from './Type'; declare class Group extends React.Component { static displayName: string; static Size: ["small", "large"]; static Type: ["primary", "dashed", "danger"]; static Shape: ["round", "circle"]; static propTypes: object; render(): JSX.Element; } declare namespace Group { interface Props extends React.Props<{}> { size?: ButtonSize; type?: ButtonType; shape?: ButtonShape; disabled?: boolean; className?: string; style?: React.CSSProperties; } } export default Group;