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