///
import * as React from 'react';
import { PureComponent } from 'react';
import { InputTextProps } from './InputText';
export declare const mapStringArrayToCommaSeparatedText: (words: string[]) => string;
export declare const mapStringCommaSeparatedToArray: (text: string) => string[];
export interface Props extends InputTextProps {
onChange: (value: string) => void;
}
export interface State {
text: string;
}
export declare class HorizontalFormFieldInput extends PureComponent {
state: State;
private updatedFromInside;
constructor(props: Props);
componentDidUpdate(prevProps: Props): void;
render(): JSX.Element;
getValue: () => string | number | string[];
handleChange: (e: React.ChangeEvent) => void;
}