/** * @author yaoxue * @date 2024/08/21 * @description 错误列表 */ import { FC, ReactNode } from 'react'; import type { ValidateStatus } from './FieldFormItem'; export interface ErrorListProps { helperText?: ReactNode; helpStatus?: ValidateStatus; errors?: ReactNode[]; warnings?: ReactNode[]; onVisibleChanged?: (visible: boolean) => void; } declare const ErrorList: FC; export default ErrorList;