import * as listContracts from "./list-contracts.js"; import * as getContractDetails from "./get-contract-details.js"; export declare const contractToolDefinitions: { [x: string]: unknown; name: string; inputSchema: { [x: string]: unknown; type: "object"; properties?: { [x: string]: unknown; } | undefined; required?: string[] | undefined; }; title?: string | undefined; description?: 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; }[]; export declare const contractToolHandlers: { upwork_list_contracts: (args: import("zod").TypeOf, upworkClient: import("../../services/upwork-client.js").UpworkClient) => Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; upwork_get_contract_details: (args: import("zod").TypeOf, upworkClient: import("../../services/upwork-client.js").UpworkClient) => Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; }; export declare const contractSchemas: { upwork_list_contracts: import("zod").ZodObject<{ status: import("zod").ZodOptional>; type: import("zod").ZodOptional>; limit: import("zod").ZodDefault; }, "strip", import("zod").ZodTypeAny, { limit: number; type?: "hourly" | "fixed-price" | undefined; status?: "active" | "ended" | "cancelled" | undefined; }, { limit?: number | undefined; type?: "hourly" | "fixed-price" | undefined; status?: "active" | "ended" | "cancelled" | undefined; }>; upwork_get_contract_details: import("zod").ZodObject<{ contract_id: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { contract_id: string; }, { contract_id: string; }>; }; //# sourceMappingURL=index.d.ts.map