import React from 'react'; export interface ISelectableField { code: T; title: string; disabled?: boolean; } export interface Group { title: string; options: { title: string; code: string; disabled?: boolean; }[]; } export interface SelectFieldProps { value?: string[]; onChange?: (codes: string[], select: boolean, value: string[]) => void; groups: Group[]; triggerElement?: React.ReactElement; } declare const SelectField: React.FC; export default SelectField;