UNPKG

react-life-design

Version:
17 lines (16 loc) 416 B
import * as React from 'react'; export interface IProps { options?: any; loadOptions?: Object[]; placeholder?: string; onChange?: (e?: any) => any; isDisabled?: boolean; cacheOptions?: boolean; defaultOptions?: boolean; async?: boolean; value?: any; noOptionsMessage?: any; } export default class MultiSelect extends React.PureComponent<IProps> { render(): JSX.Element; }