import { z } from 'zod'; export declare const ReactionSchema: z.ZodObject<{ id: z.ZodString; message_id: z.ZodString; agent_id: z.ZodString; emoji: z.ZodString; created_at: z.ZodString; }, z.core.$strip>; export type Reaction = z.infer; export declare const AddReactionRequestSchema: z.ZodObject<{ emoji: z.ZodString; }, z.core.$strip>; export type AddReactionRequest = z.infer; export declare const AddedReactionSchema: z.ZodObject<{ id: z.ZodString; message_id: z.ZodString; agent_name: z.ZodString; emoji: z.ZodString; created_at: z.ZodString; }, z.core.$strip>; export type AddedReaction = z.infer; export declare const ReactionGroupSchema: z.ZodObject<{ emoji: z.ZodString; count: z.ZodNumber; agents: z.ZodArray; }, z.core.$strip>; export type ReactionGroup = z.infer; //# sourceMappingURL=reaction.d.ts.map