chop-logic-components
Version:
React UI components library for Chop Logic project
16 lines (15 loc) • 405 B
TypeScript
import { default as React } from 'react';
import { ChopLogicSelectValue } from '../../../../models';
type Props = {
opened: boolean;
disabled: boolean;
required: boolean;
onClick: () => void;
comboboxId: string;
dropdownId: string;
selected?: ChopLogicSelectValue;
placeholder?: string;
name: string;
};
export declare const SelectCombobox: React.FC<Props>;
export {};