import { FunctionComponent, HTMLAttributes } from 'react';
declare type Props = Pick<HTMLAttributes<HTMLButtonElement>, 'onClick'>;
declare const Button: FunctionComponent<Props>;
export default Button;
