import React from 'react'; import './FieldList.less'; interface Group { title: string; options: { title: string; code: string; disabled?: boolean; }[]; } declare type Props = { closeMenu: () => void; value: string[]; onSelect: (code: string | string[]) => void; onUnSelect: (code: string | string[]) => void; groups: Group[]; }; declare const FieldList: React.FC; export default FieldList;