/** * Tool registry — imports and registers all tool modules. */ import type { Server } from "./helpers.js"; import type { ZPLEngineClient } from "../engine-client.js"; export declare function registerAllTools(server: Server, getClient: () => ZPLEngineClient): void;