import React, { ReactNode } from 'react'; import { ButtonProps } from 'antd'; export interface BaseButtonProps extends ButtonProps { type: 'primary' | 'ghost' | 'dashed' | 'link' | 'text' | 'default' | 'warning' | 'success' | 'info' | 'error' | 'default' | undefined; title?: string | ReactNode; backgroundColor?: string; background?: string; color?: string; borderColor?: string; } declare const BaseButton: (props: BaseButtonProps) => React.DetailedReactHTMLElement, HTMLInputElement>; export default BaseButton;