import { z } from 'zod'; export declare const ReadReceiptSchema: z.ZodObject<{ message_id: z.ZodString; agent_id: z.ZodString; read_at: z.ZodString; }, z.core.$strip>; export type ReadReceipt = z.infer; export declare const ReaderInfoSchema: z.ZodObject<{ agent_name: z.ZodString; agent_id: z.ZodString; read_at: z.ZodString; }, z.core.$strip>; export type ReaderInfo = z.infer; export declare const ChannelReadStatusSchema: z.ZodObject<{ agent_name: z.ZodString; last_read_id: z.ZodNullable; last_read_at: z.ZodNullable; }, z.core.$strip>; export type ChannelReadStatus = z.infer; //# sourceMappingURL=receipt.d.ts.map