import React from 'react'; import { EditorEGate, EditorSignalEvent, EditorTimerEvent } from '../../../model/editormodel'; import { MMELNote, MMELProvision, MMELReference } from '../../../serialize/interface/supportinterface'; import { MMELEdge } from '../../../serialize/interface/flowcontrolinterface'; export declare const DescribeStart: React.FC; export declare const DescribeEnd: React.FC; export declare const DescribeEGate: React.FC<{ egate: EditorEGate; getOutgoingEdgesById?: (id: string) => MMELEdge[]; }>; export declare const DescribeSignalCatch: React.FC<{ scEvent: EditorSignalEvent; }>; export declare const DescribeTimer: React.FC<{ timer: EditorTimerEvent; }>; export declare const DescribeProvision: React.FC<{ provision: MMELProvision; getRefById?: (id: string) => MMELReference | null; }>; export declare const DescribeNote: React.FC<{ note: MMELNote; getRefById?: (id: string) => MMELReference | null; }>; export declare const DescribeEdge: React.FC<{ edge: MMELEdge; }>; //# sourceMappingURL=ComponentDescription.d.ts.map