import { z } from "zod"; import { ServerContext } from "../server.js"; export declare const adbDeviceInputSchema: z.ZodObject<{ operation: z.ZodEnum<{ list: "list"; select: "select"; wait: "wait"; properties: "properties"; "health-check": "health-check"; }>; deviceId: z.ZodOptional; }, z.core.$strict>; export type AdbDeviceInput = z.infer; export declare function handleAdbDeviceTool(input: AdbDeviceInput, context: ServerContext): Promise>; export declare const adbDeviceToolDefinition: { name: string; description: string; inputSchema: { type: "object"; properties?: Record; required?: string[]; }; annotations: { readOnlyHint: boolean; destructiveHint: boolean; idempotentHint: boolean; openWorldHint: boolean; }; };