import { z } from 'zod';
export declare const listAttachmentsTool: {
    name: string;
    description: string;
    parameters: z.ZodObject<{
        user_id: z.ZodString;
        message_id: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        user_id: string;
        message_id: string;
    }, {
        user_id: string;
        message_id: string;
    }>;
    execute: (params: {
        user_id: string;
        message_id: string;
    }) => Promise<{
        content: {
            type: "text";
            text: string;
        }[];
    }>;
};
//# sourceMappingURL=listAttachments.d.ts.map