/** * Presentation for the grep tool. * * Renderers live apart from the implementation so a process that only displays tool output does not * load the execution path or its typebox parameter schema. `grep.ts` spreads these into its * definition, so the tool's public shape is unchanged. */ import type { ToolDefinition } from "../../extensions/types.ts"; export declare const grepRenderers: Pick, "renderCall" | "renderResult">;