export declare const codeIntelligenceTools: { grepCodebase: import("ai").Tool<{ pattern: string; cwd?: string | undefined; glob?: string | undefined; limit?: number | undefined; }, { root: string; pattern: string; output: string; error?: never; } | { root: string; pattern: string; error: string; output?: never; }>; reviewWorkingTree: import("ai").Tool<{ cwd?: string | undefined; focus?: string | undefined; }, { root: string; review: string; }>; explainSymbol: import("ai").Tool<{ symbol: string; cwd?: string | undefined; }, { symbol: string; root: string; explanation: string; hits: string; }>; scaffoldFiles: import("ai").Tool<{ files: { path: string; content: string; overwrite?: boolean | undefined; }[]; cwd?: string | undefined; }, { created: string[]; count: number; }>; runProjectChecks: import("ai").Tool<{ cwd?: string | undefined; scripts?: string[] | undefined; }, { root: string; ran: never[]; note: string; available: Record; results?: never; allPassed?: never; } | { root: string; results: { script: string; output: string; ok: boolean; }[]; allPassed: boolean; ran?: never; note?: never; available?: never; }>; }; //# sourceMappingURL=code-intelligence.tool.d.ts.map