import type { ButtonProps as AntdButtonProps } from 'tntd/lib/button'; import type { FC } from 'react'; import type { PopconfirmProps } from 'tntd/lib/popconfirm'; export interface ButtonProps extends AntdButtonProps { tooltip?: string; popconfirm?: PopconfirmProps; } export declare const Button: FC; export default Button;