chop-logic-components
Version:
React UI components library for Chop Logic project
12 lines (11 loc) • 339 B
TypeScript
import { default as React } from 'react';
import { ChopLogicMultiSelectValue } from '../../../models';
type Props = {
options: ChopLogicMultiSelectValue[];
opened: boolean;
dropdownId: string;
onClose: () => void;
onSelect: (id: string) => void;
};
export declare const MultiSelectDropdown: React.FC<Props>;
export {};