/// import { BaseInput, IBaseInputProps, IBaseInputState } from './base-input'; export interface ITextAreaProps extends IBaseInputProps { placeholder?: string; rows?: number | null; cols?: number | null; } export declare class TextAreaInput extends BaseInput { protected type: string; constructor(props: ITextAreaProps); render(): JSX.Element; }