import { PureComponent } from 'react'; import Group from './Group'; import Once from './Once'; import { ButtonProps } from './Props'; declare class Button extends PureComponent { static displayName: string; static Group: typeof Group; static Once: typeof Once; static defaultProps: ButtonProps; getChildren(): any; render(): JSX.Element; } export default Button;