import type { WorkspaceBridge } from '../analyze.js'; export type OverviewCommunityPageMode = 'interactive' | 'summary'; export interface OverviewBridgeSummary { id: string; label: string; community_name: string; connected_communities: string[]; connection_summary: string; source_files: string[]; degree: number; score: number; href: string; } export declare function nodeAnchorId(nodeId: string): string; export declare function bridgePageFilename(nodeId: string): string; export declare function buildOverviewBridgeSummaries(bridges: readonly WorkspaceBridge[], communityPagesDirname: string): OverviewBridgeSummary[];