/** @typedef {typeof __propDef.props} TextareaInputProps */ /** @typedef {typeof __propDef.events} TextareaInputEvents */ /** @typedef {typeof __propDef.slots} TextareaInputSlots */ export default class TextareaInput extends SvelteComponentTyped<{ [x: string]: any; color?: string | undefined; value?: string | undefined; error?: string | undefined; name?: string | undefined; label?: string | undefined; placeholder?: string | undefined; isRequired?: boolean | undefined; isTouched?: boolean | undefined; inputClass?: string | undefined; id?: string | undefined; }, { stopTyping: MouseEvent | UIEvent | Event | KeyboardEvent | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | ProgressEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent; change: Event; keyup: KeyboardEvent; } & { [evt: string]: CustomEvent; }, { label: {}; }> { } export type TextareaInputProps = typeof __propDef.props; export type TextareaInputEvents = typeof __propDef.events; export type TextareaInputSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; color?: string | undefined; value?: string | undefined; error?: string | undefined; name?: string | undefined; label?: string | undefined; placeholder?: string | undefined; isRequired?: boolean | undefined; isTouched?: boolean | undefined; inputClass?: string | undefined; id?: string | undefined; }; events: { stopTyping: MouseEvent | UIEvent | Event | KeyboardEvent | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | ProgressEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent; change: Event; keyup: KeyboardEvent; } & { [evt: string]: CustomEvent; }; slots: { label: {}; }; }; export {};