import React from 'react'; import { EditorRegistry } from '../../../model/editormodel'; import { MMELDataAttribute } from '../../../serialize/interface/datainterface'; import { MMELEdge } from '../../../serialize/interface/flowcontrolinterface'; import { MMELNote, MMELProvision, MMELReference } from '../../../serialize/interface/supportinterface'; export declare const ApprovalRecordList: React.FC<{ regs: EditorRegistry[]; }>; export declare const ReferenceList: React.FC<{ refs: Set; getRefById: (id: string) => MMELReference | null; }>; export declare const AttributeList: React.FC<{ attributes: Record; getRefById?: (id: string) => MMELReference | null; CustomAttribute?: React.FC<{ att: MMELDataAttribute; getRefById?: (id: string) => MMELReference | null; dcid: string; }>; dcid: string; }>; export declare const ProvisionList: React.FC<{ provisions: Set; getProvisionById: (id: string) => MMELProvision | null; getRefById?: (id: string) => MMELReference | null; CustomProvision?: React.FC<{ provision: MMELProvision; getRefById?: (id: string) => MMELReference | null; }>; }>; export declare const NotesList: React.FC<{ notes: Set; getNoteById: (id: string) => MMELNote | null; getRefById?: (id: string) => MMELReference | null; }>; export declare const MeasurementList: React.FC<{ measurements: string[]; }>; export declare const EdgeList: React.FC<{ edges: MMELEdge[]; }>; //# sourceMappingURL=ComponentList.d.ts.map