UNPKG

@try-at-software/input-elements

Version:

A package providing different input elements that are extensible and easily configurable for your custom needs.

11 lines (10 loc) 633 B
import * as React from 'react'; import { IBaseInputElementProps } from '../IBaseInputElementProps'; import { IDynamicProps } from '../IDynamicProps'; import { IOperativeProps } from '../IOperativeProps'; import { ISingleValueInputElementProps } from '../ISingleValueInputElementProps'; import { IMultiValueDropdownInputProps } from './IMultiValueDropdownInputProps'; export declare class MultiValueDropdownInput extends React.Component<ISingleValueInputElementProps<string[]> & IOperativeProps<IBaseInputElementProps> & IDynamicProps<IMultiValueDropdownInputProps>> { render(): JSX.Element; private handleChange; }