import { Tool } from "@modelcontextprotocol/sdk/types.js"; import { UpworkClient } from "../../services/upwork-client.js"; export declare const listMessagesToolDefinition: Tool; export declare function listMessagesHandler(args: unknown, upworkClient: UpworkClient): Promise<{ content: { type: string; text: string; }[]; }>; export declare const listMessagesTool: { definition: { [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; }; handler: typeof listMessagesHandler; schema: import("zod").ZodObject<{ room_id: import("zod").ZodOptional; unread_only: import("zod").ZodDefault; limit: import("zod").ZodDefault; }, "strip", import("zod").ZodTypeAny, { limit: number; unread_only: boolean; room_id?: string | undefined; }, { limit?: number | undefined; room_id?: string | undefined; unread_only?: boolean | undefined; }>; }; //# sourceMappingURL=list-messages.d.ts.map