import { z } from "zod"; import { ServerContext } from "../server.js"; export declare const adbAppInputSchema: z.ZodObject<{ operation: z.ZodEnum<{ list: "list"; install: "install"; uninstall: "uninstall"; launch: "launch"; stop: "stop"; "clear-data": "clear-data"; }>; apkPath: z.ZodOptional; packageName: z.ZodOptional; limit: z.ZodOptional, z.ZodCoercedNumber>>; filter: z.ZodOptional; offset: z.ZodOptional, z.ZodCoercedNumber>>; }, z.core.$strict>; export type AdbAppInput = z.infer; export declare function handleAdbAppTool(input: AdbAppInput, context: ServerContext): Promise>; export declare const adbAppToolDefinition: { name: string; description: string; inputSchema: { type: "object"; properties?: Record; required?: string[]; }; annotations: { readOnlyHint: boolean; destructiveHint: boolean; idempotentHint: boolean; openWorldHint: boolean; }; };