import { SvelteComponentTyped } from "svelte";
import type { Writable } from 'svelte/store';
declare const __propDef: {
    props: {
        [x: string]: any;
        areaClass?: string;
        label?: string;
        description?: string;
        value: string;
        isActive?: boolean;
        footer?: string;
        focus?: boolean;
        height?: {
            max: number;
            min: number;
            current: number;
        };
        autoresize?: boolean;
        disabled?: boolean;
        oninput?: Function | null;
        onmount?: Function | null;
        name?: string;
        errors?: Writable<{
            [key: string]: string;
        }> | null;
        error?: string;
    };
    events: {
        input: CustomEvent<any>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        label: {};
        footer: {};
    };
};
export type TextAreaProps = typeof __propDef.props;
export type TextAreaEvents = typeof __propDef.events;
export type TextAreaSlots = typeof __propDef.slots;
export default class TextArea extends SvelteComponentTyped<TextAreaProps, TextAreaEvents, TextAreaSlots> {
}
export {};
