react-restyle-components
Version:
Easy use restyle components
11 lines (10 loc) • 375 B
TypeScript
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 {};