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