import type { HTMLTextareaAttributes } from "svelte/elements";
import "@sjsf/form/fields/extra-widgets/textarea";
declare module "@sjsf/form" {
interface UiOptions {
textarea?: HTMLTextareaAttributes;
}
}
declare const Textarea: import("svelte").Component, {}, "value">;
type Textarea = ReturnType;
export default Textarea;