import { zod } from "../zod"; export declare namespace Entry { const type: zod.ZodObject<{ message: zod.ZodString; data: zod.ZodOptional; }, zod.z.core.$strip>; namespace Message { const type: zod.ZodObject<{ resource: zod.ZodOptional; message: zod.ZodString; data: zod.ZodOptional; }, zod.z.core.$strip>; function to(message: string, data: any | undefined, resource: string | undefined): Entry.Message; } type Message = zod.infer; } export type Entry = zod.infer;