import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; /** Controls whether filesystem-dependent image tools are registered. */ export interface ImageToolOptions { /** * `upload_image` reads a file from the local filesystem, so it is registered * only on stdio. The hosted HTTP endpoint has no access to the caller's disk * and would advertise a tool that can never succeed. */ includeLocalTools?: boolean; } /** Register cover-image generation, plus local upload on stdio only. */ export declare function registerImageTools(server: McpServer, options?: ImageToolOptions): void; //# sourceMappingURL=images.d.ts.map