import type { DocIntelligenceResult } from "./types.js"; /** * Execute a document intelligence action inside the project root boundary. * * The router is a traffic cop — it dispatches to the appropriate `*-ops.ts` * module based on the action discriminator. No business logic lives here * beyond dispatch and path security. * * @param projectRoot - Trusted project root for path security. * @param input - Parsed action input with discriminated action field. * @returns Action-specific document intelligence result. */ export declare function executeDocIntelligenceAction(projectRoot: string, input: { action: string; path: string; [key: string]: unknown; }): DocIntelligenceResult | Promise; //# sourceMappingURL=router.d.ts.map