import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { simpleHeight?: boolean; value?: string; disabled?: boolean; readonly?: boolean; placeholder?: string; autofocus?: boolean; required?: boolean; name?: string; label?: string; ref?: any; isDefault?: boolean; transparent?: boolean; }; events: { keypress: KeyboardEvent; keyup: KeyboardEvent; keydown: KeyboardEvent; click: MouseEvent; change: Event; input: Event; focus: FocusEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type TextareaProps = typeof __propDef.props; export declare type TextareaEvents = typeof __propDef.events; export declare type TextareaSlots = typeof __propDef.slots; export default class Textarea extends SvelteComponentTyped { } export {};