import { ButtonProps, ModalFuncProps } from 'antd'; import React from 'react'; import './index.less'; interface ExtraProps { textColor?: string; confirmConfig?: ModalFuncProps; type?: 'text' | 'link' | 'ghost' | 'default' | 'primary' | 'dashed' | 'secondary' | 'danger' | 'alarm' | 'success' | 'errorLink' | 'alarmLink' | 'successLink'; afterIcon?: React.ReactNode; } declare const Button: React.FC & ExtraProps>; export { Button };