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