/** * @file validate failed view * @author chenqiang(chenqiang03) */ import * as React from 'react'; export interface ErrorListProps { errors?: React.ReactNode[]; /** @private Internal usage. Do not use in any production deployment */ help?: React.ReactNode; /** @private Internal usage. Do not use in any production deployment */ onDomErrorVisibleChange?: (visible: boolean) => void; } export default function ErrorList({ errors, help, onDomErrorVisibleChange, }: ErrorListProps): React.JSX.Element;