import { z } from "zod"; export declare const listWorkItemsTool: { name: string; description: string; parameters: { organizationUrl: z.ZodString; project: z.ZodString; query: z.ZodString; }; handler: ({ organizationUrl, project, query }: { organizationUrl: string; project: string; query: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; };