import { Type } from "typebox"; import type { ToolDefinition } from "@earendil-works/pi-coding-agent"; import type { AcpRuntime } from "./runtime.js"; declare const DecompressParams: Type.TObject<{ blockId: Type.TString; full: Type.TOptional; toFile: Type.TOptional; inline: Type.TOptional; }>; export declare function makeDecompressTool(runtime: AcpRuntime): ToolDefinition; export {};