import { z } from 'zod';
export declare const SLACK_ACTION_TOOL_DEFINITIONS: {
    name: "add_reaction";
    inputSchema: z.ZodObject<{
        action: z.ZodLiteral<"add_reaction">;
        input: z.ZodObject<{
            emoji: z.ZodString;
            threadId: z.ZodOptional<z.ZodString>;
            messageId: z.ZodOptional<z.ZodString>;
        }, "strict", z.ZodTypeAny, {
            emoji: string;
            threadId?: string | undefined;
            messageId?: string | undefined;
        }, {
            emoji: string;
            threadId?: string | undefined;
            messageId?: string | undefined;
        }>;
    }, "strip", z.ZodTypeAny, {
        action: "add_reaction";
        input: {
            emoji: string;
            threadId?: string | undefined;
            messageId?: string | undefined;
        };
    }, {
        action: "add_reaction";
        input: {
            emoji: string;
            threadId?: string | undefined;
            messageId?: string | undefined;
        };
    }>;
    description: string;
}[];
