import { ButtonProps, ButtonType } from 'antd/es/button'; import { PopconfirmProps } from 'antd/es/popconfirm'; import React from 'react'; export declare const Button: React.ForwardRefExoticComponent & React.RefAttributes>>; interface IConfirmButton extends PopconfirmProps { type?: ButtonType; size?: 'small' | 'middle' | 'large'; danger?: boolean; onBeforeOpen?: React.MouseEventHandler; } export declare const ConfirmButton: React.ForwardRefExoticComponent & React.RefAttributes>>; export {};