import type { TooltipProps } from '../tooltip'; import { Size, Status, BorderShape } from '../_utils/constant'; import { ButtonTypes } from './constants'; export interface ButtonProps { type?: ButtonTypes; shape?: BorderShape; status?: Status; size?: Size; long?: boolean; loading?: boolean; loadingFixedWidth?: boolean; disabled?: boolean; htmlType?: 'button' | 'submit' | 'reset'; autofocus?: boolean; href?: string; tooltip?: string | TooltipProps; }