import * as z from "zod"; /** * Creates a tool that searches code using ripgrep (or grep as fallback) * This provides fast, structured code search across the codebase */ export declare const createCodeSearchTool: (workspace: string) => import("langchain").DynamicStructuredTool; type: z.ZodOptional; context: z.ZodDefault>; caseSensitive: z.ZodDefault>; }, z.core.$strip>, { pattern: string; path?: string; type?: string; context?: number; caseSensitive?: boolean; }, { pattern: string; path?: string | undefined; type?: string | undefined; context?: number | undefined; caseSensitive?: boolean | undefined; }, string, "code_search">;