import { VueNode } from "../_util/type.js"; import { ValidateStatus } from "./FormItem/index.js"; import * as vue255 from "vue"; //#region src/form/ErrorList.d.ts interface ErrorListProps { fieldId?: string; help?: VueNode; helpStatus?: ValidateStatus; errors?: any[]; warnings?: any[]; onVisibleChanged?: (visible: boolean) => void; } declare const ErrorList: vue255.DefineSetupFnComponent; //#endregion export { ErrorListProps, ErrorList as default };