UNPKG

@manojadams/metaforms

Version:
16 lines (15 loc) 481 B
/// <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;