import React from 'react'; import { DefaultProps, FlowindSize } from '../../styles'; import { InputSharedProps, InputWrapperBaseProps } from '../input'; import { TextInputStylesNames } from '../text-input/text-input'; export interface TextareaProps extends DefaultProps, InputWrapperBaseProps, InputSharedProps, Omit, 'prefix'> { /** Id is used to bind input and label, if not passed unique id will be generated for each input */ id?: string; /** If true textarea will grow with content until maxRows are reached */ autosize?: boolean; /** Defines maxRows in autosize variant, not applicable to regular variant */ maxRows?: number; /** Defined minRows in autosize variant and rows in regular variant */ minRows?: number; /** Props passed to root element */ wrapperProps?: Record; /** Input size */ size?: FlowindSize; /** Static selectors base */ __staticSelector?: string; } export declare const Textarea: React.ForwardRefExoticComponent>;