import { CID } from 'multiformats/cid'; import { default as React } from 'react'; export interface PathBoundary { path: string; source: CID; target: CID; } export interface GraphCrumbProps extends React.HTMLAttributes { cid: CID; pathBoundaries: PathBoundary[]; /** * Used to represent the current path segment that is being explored or displayed within the component. This path * segment is typically appended to the existing path boundaries to form the complete path that the user is navigating * through. */ localPath?: string; /** * used to construct the base URL for the links generated within the breadcrumb navigation. This property is essential * for creating the correct URLs that users can click on to navigate through different segments of the path. */ hrefBase?: string; className?: string; } declare const GraphCrumb: React.FC; export default GraphCrumb;