import { CSSProperties, TextareaHTMLAttributes } from 'react'; import { TextareaAutosizeProps } from 'react-textarea-autosize'; import { InputProps } from '../Input'; export type TextareaProps = { /** Свойства элемента textarea */ inputProps?: Omit, 'height' | 'style'> & TextareaAutosizeProps; } & Pick & Pick, 'onFocus' | 'onBlur' | 'onClick' | 'onChange'> & Omit, 'type' | 'mask' | 'inputProps' | 'onFocus' | 'onBlur' | 'onClick' | 'onChange' | 'startAdornment' | 'endAdornment'> & Pick;