import { z } from "zod"; import { ServerContext } from "../server.js"; export declare const adbLogcatInputSchema: z.ZodObject<{ lines: z.ZodDefault, z.ZodCoercedNumber>>>; package: z.ZodOptional; tags: z.ZodOptional>; level: z.ZodOptional>; rawFilter: z.ZodOptional; since: z.ZodOptional; }, z.core.$strict>; export type AdbLogcatInput = z.infer; export declare function handleAdbLogcatTool(input: AdbLogcatInput, context: ServerContext): Promise>; export declare const adbLogcatToolDefinition: { name: string; description: string; inputSchema: { type: "object"; properties?: Record; required?: string[]; }; annotations: { readOnlyHint: boolean; destructiveHint: boolean; idempotentHint: boolean; openWorldHint: boolean; }; };