import * as React from "react"; export interface MultipleInputProps { value?: string; dropDown?: boolean; valueData?: Array; onChange?: (h: any) => any; } export interface MultipleInputState { value: string; dropDown: boolean; valueData: Array; } export default class MultipleInput extends React.Component { constructor(props: MultipleInputProps); componentDidMount(): void; componentWillReceiveProps(nextProps: any): void; handleValueData: (code: string, valueData: Array) => any[]; onChange: (e: any) => void; handleDelete: (item: any) => void; handleDeleteAll: () => void; renderOptions: (item: any) => JSX.Element; showDropDown(): JSX.Element; onPopupVisibleChange: (show: any) => void; onMouseOut: () => void; render(): JSX.Element; }