import { z } from "zod"; import { ServerContext } from "../server.js"; export declare const adbShellInputSchema: z.ZodObject<{ command: z.ZodString; timeout: z.ZodOptional, z.ZodCoercedNumber>>; maxChars: z.ZodOptional, z.ZodCoercedNumber>>; summaryOnly: z.ZodOptional, z.ZodBoolean>>; previewChars: z.ZodOptional, z.ZodCoercedNumber>>; }, z.core.$strict>; export type AdbShellInput = z.infer; export declare function handleAdbShellTool(input: AdbShellInput, context: ServerContext): Promise>; export declare const adbShellToolDefinition: { name: string; description: string; inputSchema: { type: "object"; properties?: Record; required?: string[]; }; annotations: { readOnlyHint: boolean; destructiveHint: boolean; idempotentHint: boolean; openWorldHint: boolean; }; };