/// <reference types="react" />
import { IMultitextInput } from "../../constants/model-interfaces";
declare const Multitext: (props: IProps) => JSX.Element;
interface IProps {
    displayLabel: string;
    placeholder: string | undefined;
    inputs: Array<IMultitextInput>;
    value: string | number | boolean | undefined;
    variant: any;
    seperator: string;
    size: any;
    updateValue: Function;
    wrapperClassName: string;
}
export default Multitext;
