import React from 'react'; import { HistoryAction } from '../../../model/editor/history'; import { HistoryItem } from '../../../model/history'; import { MMELRole } from '../../../serialize/interface/supportinterface'; interface Breadcrumb { label: JSX.Element; onNavigate: () => void; } export declare const DescriptionItem: React.FC<{ label?: string; value: string; extend?: JSX.Element; }>; export declare const ActorDescription: React.FC<{ role: MMELRole | null; label: string; }>; export declare const NonEmptyFieldDescription: React.FC<{ label: string; value: string; }>; export declare function getBreadcrumbs(ph: HistoryItem[], onPageChange: (updated: HistoryAction, newPage: string) => void): Breadcrumb[]; export {}; //# sourceMappingURL=fields.d.ts.map