/** * Parse the agent's JSON output. We expect a single ```json code block. * Defensively also accept raw JSON (no fence). Throws with a useful * message if neither shape is parseable. */ import type { IndustryExpansion, BrandDiscovery } from "./types.js"; export declare function extractJsonFromAgentOutput(text: string): unknown; export declare function parseIndustryExpansion(text: string): IndustryExpansion; export declare function parseBrandDiscovery(text: string): BrandDiscovery;