import React, { FunctionComponent, ChangeEventHandler, Ref } from 'react'; import { InputLabelPosition } from './InputLabel'; export interface MultiLineTextInputProps { id: string; errorMessage?: string; value: string; onChange: ChangeEventHandler; isRequired?: boolean; label: string; isLabelVisible?: boolean; isDisabled?: boolean; labelPosition?: InputLabelPosition; forwardRef?: Ref; name: string; placeholder: string; } export declare const StyledTextArea: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLTextAreaElement>, Omit>>; declare const MultiLineTextInput: FunctionComponent; export default MultiLineTextInput;