/** @typedef {typeof __propDef.props} TextAreaProps */ /** @typedef {typeof __propDef.events} TextAreaEvents */ /** @typedef {typeof __propDef.slots} TextAreaSlots */ export default class TextArea extends SvelteComponentTyped<{ [x: string]: any; class?: string | undefined; label?: string | undefined; value?: string | undefined; floatingLabel?: boolean | undefined; placeholder?: string | undefined; errors?: string[] | undefined; rows?: string | number | undefined; }, { change: Event; click: MouseEvent; input: Event; } & { [evt: string]: CustomEvent; }, {}> { } export type TextAreaProps = typeof __propDef.props; export type TextAreaEvents = typeof __propDef.events; export type TextAreaSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; class?: string | undefined; label?: string | undefined; value?: string | undefined; floatingLabel?: boolean | undefined; placeholder?: string | undefined; errors?: string[] | undefined; rows?: string | number | undefined; }; events: { change: Event; click: MouseEvent; input: Event; } & { [evt: string]: CustomEvent; }; slots: {}; }; export {};