/** * Prompt templates for L0 (industry expansion) and L1 (brand discovery). * * The agent receives one of these prompts, does web research, and emits * a JSON block. We parse the JSON and write stubs. * * Critical: tell the agent to OUTPUT JSON in a specific shape, with * CITATIONS for any factual claim (store counts, parent companies, etc.). */ export declare function industryExpansionPrompt(industry: string, country?: string): string; export declare function brandDiscoveryPrompt(industry: string, subcategory: string, subcategoryDescription: string, country?: string): string;