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; messageId: z.ZodOptional; }, "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; }[];