export declare const BATCH_QUERY_GUIDANCE = "Batch 1\u20135 independent queries in queries[] per call; keep dependent probes sequential."; export declare const EVIDENCE_COMPLETENESS_GUIDANCE = "Check every requested fact against returned evidence; query unresolved facts, then compose a complete answer."; export interface GrammarCapability { language: string; languageId?: string; selectorAliases: readonly string[]; extensions: readonly string[]; structuralSearch: boolean; signatureOutline: boolean; graphFacts: boolean; } export interface McpInstructionOptions { grammarCapabilities?: readonly GrammarCapability[]; } export declare function buildGrammarCapabilityInstruction(capabilities: readonly GrammarCapability[] | undefined): string | undefined; /** Shared workflow, scoped to the catalog exposed by a transport or session. */ export declare function buildMcpInstructions(enabledToolNames: readonly string[], options?: McpInstructionOptions): string; export declare const TOOL_RESEARCH_INSTRUCTIONS: string;