import { z } from "zod"; export declare const grepOutputModes: readonly ["content", "files_with_matches", "count"]; export declare const grepArgsSchema: { pattern: z.ZodString; include: z.ZodOptional; path: z.ZodOptional; output_mode: z.ZodOptional>; head_limit: z.ZodOptional; }; export type GrepArgs = z.infer>; export type GrepOutput = string;