import { z } from 'zod'; export declare enum AlertChannel { EMAIL = "EMAIL" } export declare const Alert: z.ZodObject<{ projectId: z.ZodString; channel: z.ZodEnum; receiver: z.ZodString; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>; export type Alert = z.infer; //# sourceMappingURL=alerts-dto.d.ts.map