export declare class ModuleNode {
    moduleId: string;
    importerModuleIds: string[];
    children: Set<ModuleNode> | null;
    constructor(moduleId: string, importerModuleIds: string[]);
}
