import { Tool } from "@modelcontextprotocol/sdk/types.js";
import { ListContractsArgsSchema } from "../../schemas/upwork.js";
import { z } from "zod";
export declare const toolDefinition: Tool;
export declare const handler: (args: z.infer<typeof ListContractsArgsSchema>) => Promise<{
    success: boolean;
    contracts: any;
    totalContracts: any;
    pagination: {
        limit: number;
        hasMore: boolean;
    };
}>;
export { ListContractsArgsSchema as schema } from "../../schemas/upwork.js";
//# sourceMappingURL=list-contracts.d.ts.map