import { ButtonProps, BUTTON_TYPE, BUTTON_SIZE, BUTTON_HTML_TYPE } from './types'; declare const Button: ({ isLoading, htmlType, type, size, onClick, isFullWidth, elementId, isAsync, isDisabled, children, gtmAction, gtmLabel, onMouseEnter, onMouseLeave, }: ButtonProps) => JSX.Element; export default Button; export { BUTTON_TYPE, BUTTON_SIZE, BUTTON_HTML_TYPE };