import React, { FunctionComponent, HTMLProps } from 'react'; import { box } from '../../../utility/box'; export type Props = typeof box.props & { className?: string; title: string; target?: HTMLAnchorElement['target']; href?: string; disabled?: boolean; id?: string; loading?: boolean; 'data-testid'?: string; } & Partial, 'onClick' | 'onMouseEnter' | 'onMouseLeave' | 'onFocus' | 'onBlur'>>; declare const ButtonBase: FunctionComponent>; export default ButtonBase;