import { z } from "zod"; import { ServerContext } from "../server.js"; export declare const gradleListInputSchema: z.ZodObject<{ operation: z.ZodEnum<{ tasks: "tasks"; modules: "modules"; variants: "variants"; }>; module: z.ZodOptional; }, z.core.$strict>; export type GradleListInput = z.infer; export declare function handleGradleListTool(input: GradleListInput, context: ServerContext): Promise>; export declare const gradleListToolDefinition: { name: string; description: string; inputSchema: { type: "object"; properties?: Record; required?: string[]; }; annotations: { readOnlyHint: boolean; destructiveHint: boolean; idempotentHint: boolean; openWorldHint: boolean; }; };