UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

16 lines (15 loc) 417 B
import { default as React } from 'react'; import { ChopLogicMultiSelectValue } from '../../../models'; type Props = { opened: boolean; disabled: boolean; required: boolean; onClick: () => void; comboboxId: string; dropdownId: string; values?: ChopLogicMultiSelectValue[]; placeholder?: string; name: string; }; export declare const MultiSelectCombobox: React.FC<Props>; export {};