import { CSSProperties, PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { OnChangeEventType } from "../../interfaces/types/OnChangeEventType"; export interface TextareaInterfaceProps extends PropsInterface { name?: string; value: string; cols?: number; rows?: number; id?: string; placeholder?: string; onChange?: OnChangeEventType; styleTextArea?: CSSProperties; } export declare class Textarea extends PureComponent { constructor(props: any); render(): JSX.Element; }