import { Tool } from "@modelcontextprotocol/sdk/types.js"; import { ListContractsArgsSchema } from "../../schemas/upwork.js"; import { UpworkClient } from "../../services/upwork-client.js"; import { z } from "zod"; export declare const toolDefinition: Tool; export declare const handler: (args: z.infer, upworkClient: UpworkClient) => Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export { ListContractsArgsSchema as schema } from "../../schemas/upwork.js"; //# sourceMappingURL=list-contracts.d.ts.map