import React from 'react'; import { EditorProcess } from '../../../model/editormodel'; import { MMELNote, MMELProvision, MMELReference, MMELRole } from '../../../serialize/interface/supportinterface'; export declare const DescribeProcess: React.FC<{ process: EditorProcess; getRoleById: (id: string) => MMELRole | null; getRefById?: (id: string) => MMELReference | null; getProvisionById: (id: string) => MMELProvision | null; getNoteById: (id: string) => MMELNote | null; CustomProvision?: React.FC<{ provision: MMELProvision; getRefById?: (id: string) => MMELReference | null; }>; }>; //# sourceMappingURL=process.d.ts.map