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