import { z } from 'zod'; import { AlertChannel } from './alerts-dto'; export declare const ListAlertsParams: z.ZodObject<{ projectId: z.ZodString; cursor: z.ZodOptional; limit: z.ZodOptional>; }, z.core.$strip>; export type ListAlertsParams = z.infer; export declare const CreateAlertParams: z.ZodObject<{ projectId: z.ZodString; channel: z.ZodEnum; receiver: z.ZodString; }, z.core.$strip>; export type CreateAlertParams = z.infer; //# sourceMappingURL=alerts-requests.d.ts.map