/**
 * Panorama summarization helper for internal agent responses.
 *
 * Extracted from bootstrap-internal.ts.
 * Note: MissionBriefingBuilder has its own typed version for the MissionBriefing interface.
 *
 * @module bootstrap/shared/panorama-utils
 */
/**
 * Summarize PanoramaResult into a compact internal-agent-friendly shape.
 *
 * Returns the top layers, coupling hotspots, cyclic dependencies, and knowledge gaps.
 */
export declare function summarizePanorama(panoramaResult: unknown): Record<string, unknown> | null;
