import { Tool } from "@modelcontextprotocol/sdk/types.js"; import { UpworkClient } from "../../services/upwork-client.js"; export declare const createMilestoneToolDefinition: Tool; export declare function createMilestoneHandler(args: unknown, upworkClient: UpworkClient): Promise<{ content: { type: string; text: string; }[]; }>; export declare const createMilestoneTool: { definition: { [x: string]: unknown; name: string; inputSchema: { [x: string]: unknown; type: "object"; properties?: { [x: string]: unknown; } | undefined; required?: string[] | undefined; }; description?: string | undefined; title?: string | undefined; outputSchema?: { [x: string]: unknown; type: "object"; properties?: { [x: string]: unknown; } | undefined; required?: string[] | undefined; } | undefined; annotations?: { [x: string]: unknown; title?: string | undefined; readOnlyHint?: boolean | undefined; destructiveHint?: boolean | undefined; idempotentHint?: boolean | undefined; openWorldHint?: boolean | undefined; } | undefined; _meta?: { [x: string]: unknown; } | undefined; }; handler: typeof createMilestoneHandler; schema: import("zod").ZodObject<{ contract_id: import("zod").ZodString; description: import("zod").ZodString; amount: import("zod").ZodNumber; due_date: import("zod").ZodOptional; }, "strip", import("zod").ZodTypeAny, { contract_id: string; description: string; amount: number; due_date?: string | undefined; }, { contract_id: string; description: string; amount: number; due_date?: string | undefined; }>; }; //# sourceMappingURL=create-milestone.d.ts.map