import { FC } from 'react'; import type { ButtonProps } from 'antd/es/button'; interface AddButtonProps extends ButtonProps { } declare const AddButton: FC; export default AddButton;