import React, { FunctionComponent } from 'react'; import { styles } from './elements'; type Props = { to?: string; href?: string; big?: boolean; small?: boolean; style?: React.CSSProperties; block?: boolean; onClick?: (event: React.MouseEvent) => void; disabled?: boolean; type?: 'button' | 'reset' | 'submit'; danger?: boolean; secondary?: boolean; red?: boolean; target?: string; rel?: string; }; declare const Button: FunctionComponent; export { Button, styles as buttonStyles };