import { z } from 'zod'; import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { WebSocketManager } from '../connection.js'; export declare const setVisibleSchema: z.ZodObject<{ identifier: z.ZodString; visible: z.ZodBoolean; }, "strip", z.ZodTypeAny, { visible: boolean; identifier: string; }, { visible: boolean; identifier: string; }>; export type SetVisibleInput = z.infer; export declare const setVisibleTool: Tool; export declare function handleSetVisible(args: SetVisibleInput, connection: WebSocketManager): Promise; //# sourceMappingURL=setVisible.d.ts.map