import React from 'react'; interface Props { /** text to display in the button */ children: React.ReactChild; /** button variant */ variant?: 'primary' | 'primaryOutline' | 'warning' | 'success' | 'info' | 'danger' | 'black'; /** button type */ type?: 'button' | 'submit' | 'reset'; /** onChange handler */ onClick?: () => void; /** onFocus handler */ onFocus?: () => void; /** onBlur handler */ onBlur?: () => void; /** is disabled */ disabled?: boolean; } declare const Button: ({ variant, type, onClick, onFocus, onBlur, children, disabled, }: Props) => JSX.Element; export default Button;