import * as React from 'react'; import { OptionalComponentPropAndHTMLAttributes } from '../../types'; export declare type ButtonProps = { /** * Set the style `display: block;`. */ block?: boolean; /** * Make the button large */ large?: boolean; /** * Make the button small */ small?: boolean; } & React.ButtonHTMLAttributes & OptionalComponentPropAndHTMLAttributes; declare const _default: React.MemoExoticComponent<(props: ButtonProps) => JSX.Element>; export default _default;