import { z } from "zod"; export declare const ChatRoomSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; purpose: z.ZodNullable; createdAt: z.ZodString; updatedAt: z.ZodString; }, z.core.$strip>; export type ChatRoom = z.infer; export declare const ChatMessageSchema: z.ZodObject<{ id: z.ZodString; roomId: z.ZodString; authorAgentId: z.ZodString; body: z.ZodString; replyToMessageId: z.ZodNullable; mentionAgentIds: z.ZodArray; createdAt: z.ZodString; }, z.core.$strip>; export type ChatMessage = z.infer; export declare const ChatRoomDetailSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; purpose: z.ZodNullable; createdAt: z.ZodString; updatedAt: z.ZodString; messageCount: z.ZodNumber; lastMessageAt: z.ZodNullable; }, z.core.$strip>; export type ChatRoomDetail = z.infer; //# sourceMappingURL=types.d.ts.map