/** * AutoBreadcrumbs — URL-path-based breadcrumb with UUID name resolution. * * Auto-generates breadcrumbs from the current URL path. Supports a global * name registry for UUID path segments so MFEs can register human-readable * names for entity IDs. * * @example * ```tsx * // In your app shell layout: * * * // In a MFE that loads an entity: * window.__breadcrumbRegistry?.register(entityId, entityName); * // cleanup: * window.__breadcrumbRegistry?.unregister(entityId); * ``` */ export declare function registerBreadcrumbName(id: string, name: string): void; export declare function unregisterBreadcrumbName(id: string): void; export declare function AutoBreadcrumbs(): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=AutoBreadcrumbs.d.ts.map