UNPKG

react-restyle-components

Version:
11 lines (10 loc) 375 B
import React from 'react'; interface MultiSelectWithFieldProps { displayField: string; options: Array<any>; selectedItems?: Array<any>; hasError?: boolean; onSelect: (item: any) => any; } export declare const MultiSelectWithField: ({ displayField, options, selectedItems, hasError, onSelect, }: MultiSelectWithFieldProps) => React.JSX.Element; export {};