import React from "react"; import { ButtonProps } from "antd"; export type GrtBtnType = ButtonProps & { content?: string; beforeClick?: Function; click?: Function; afterClick?: Function; [name: string]: any; }; declare const GrtBtn: React.FC; export default GrtBtn;