import type { HTMLAttributes } from "svelte/elements";
import "@sjsf/form/fields/extra-components/errors-list";
declare module "@sjsf/form" {
interface UiOptions {
/**
* Overrides the attributes of the errors list.
*/
errorsList?: HTMLAttributes;
}
}
declare const ErrorsList: import("svelte").Component;
type ErrorsList = ReturnType;
export default ErrorsList;