import React from 'react'; import { EditorDataClass, EditorRegistry } from '../../../model/editormodel'; import { MMELDataAttribute } from '../../../serialize/interface/datainterface'; import { MMELReference } from '../../../serialize/interface/supportinterface'; export declare const DescribeRegistry: React.FC<{ reg: EditorRegistry; getRefById?: (id: string) => MMELReference | null; getDataClassById: (id: string) => EditorDataClass | null; CustomAttribute?: React.FC<{ att: MMELDataAttribute; getRefById?: (id: string) => MMELReference | null; dcid: string; }>; }>; export declare const DescribeDC: React.FC<{ dc: EditorDataClass; getRefById?: (id: string) => MMELReference | null; CustomAttribute?: React.FC<{ att: MMELDataAttribute; getRefById?: (id: string) => MMELReference | null; dcid: string; }>; }>; export declare const DescribeAttribute: React.FC<{ att: MMELDataAttribute; getRefById?: (id: string) => MMELReference | null; }>; //# sourceMappingURL=data.d.ts.map