import { KeyboardOptions } from "../../lib/keyboard.js"; import * as react_jsx_runtime4 from "react/jsx-runtime"; import { TextareaProps } from "@lssm/lib.ui-kit-web/ui/textarea"; //#region src/components/atoms/Textarea.d.ts interface BaseFieldProps { value?: string; defaultValue?: string; placeholder?: string; disabled?: boolean; readOnly?: boolean; maxLength?: number; name?: string; className?: string; rows?: number; keyboard?: KeyboardOptions; } type TextareaProps$1 = TextareaProps & BaseFieldProps; declare function Textarea$1({ value, defaultValue, onChange, onSubmit, onFocus, onBlur, placeholder, disabled, readOnly, maxLength, name, className, rows, keyboard, ...rest }: TextareaProps$1): react_jsx_runtime4.JSX.Element; //#endregion export { Textarea$1 as Textarea }; //# sourceMappingURL=Textarea.d.ts.map