/** * @author Hanz * @date 2021/11/15 下午7:07 * @description */ import { FunctionComponent } from 'react'; import './index.scss'; interface ErrorTipProps { message: string; className?: string; } declare const ErrorTip: FunctionComponent; export default ErrorTip;