import React from 'react'; import './style.scss'; import type { IInputPropsBase } from '@adam-sv/arc'; export interface ITextAreaInputProps extends IInputPropsBase { rows?: number; cols?: number; from?: string; maxlength?: number; minlength?: number; inputRef?: React.RefObject; spellcheck?: 'true' | 'default' | 'false'; wrap?: 'hard' | 'soft' | 'off'; type?: 'textarea'; } export declare function TextAreaInput(props: ITextAreaInputProps): import("react/jsx-runtime").JSX.Element;