import React, { ChangeEventHandler, FunctionComponent, Ref } from 'react'; import { InputLabelPosition } from './InputLabel'; export interface TextInputProps { id: string; label: string; onChange: ChangeEventHandler; name: string; placeholder?: string; type?: string; value: string; errorMessage?: string; disabled?: boolean; labelPosition?: InputLabelPosition; isLabelVisible?: boolean; isRequired?: boolean; forwardRef?: Ref; hideError?: boolean; } export declare const StyledTextInput: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLInputElement>, TextInputProps>>; declare const TextInput: FunctionComponent; export default TextInput;