import type { Component } from 'svelte';
import type { WithElementRef } from 'bits-ui';
import type { HTMLTextareaAttributes } from 'svelte/elements';
declare module '../context.js' {
    interface ThemeComponents {
        Textarea: Component<WithElementRef<HTMLTextareaAttributes>, {}, 'value' | 'ref'>;
    }
}
import '@sjsf/basic-theme/extra-widgets/textarea.svelte';
declare const Textarea: Component<import("@sjsf/form/fields/widgets").WidgetCommonProps<string>, {}, "value">;
type Textarea = ReturnType<typeof Textarea>;
export default Textarea;
