import { FC, ReactNode } from 'react'; import { ModuleId } from '../types'; /** * Internal provider for module hierarchy tracking. * Used by ModuleBoundary to establish parent-child relationships. */ export declare const ModuleHierarchyProvider: FC<{ moduleId: ModuleId; children: ReactNode; }>;