import type { Tool } from '../../types/index.js'; import type { DevicesClient } from './devices-client.js'; /** The registry members this registration needs; a real ToolRegistry satisfies it. */ export interface PhoneToolRegistry { has(name: string): boolean; register(tool: Tool): void; } export declare function createClientPhoneTool(devices: DevicesClient): Tool; /** Register the client-mode `phone` tool, leaving an existing registration alone. */ export declare function registerClientPhoneTool(registry: PhoneToolRegistry, devices: DevicesClient): void; //# sourceMappingURL=phone-tool.d.ts.map