/** * Agent grounding command - Analyze agent grounding readiness */ interface GroundingOptions { maxDepth?: string; readmeStaleDays?: string; include?: string; exclude?: string; output?: string; outputFile?: string; score?: boolean; } export declare function defineAgentGroundingCommand( program: import('commander').Command ): void; export declare function agentGroundingAction( directory: string, options: GroundingOptions ): Promise; export {}; //# sourceMappingURL=agent-grounding.d.ts.map