import { z } from 'zod'; import { ApplicationEventName } from '../audit-events'; export declare enum EventDestinationScope { PLATFORM = "PLATFORM", PROJECT = "PROJECT" } export declare const ListPlatformEventDestinationsRequestBody: z.ZodObject<{ cursor: z.ZodOptional; limit: z.ZodOptional>; }, z.core.$strip>; export type ListPlatformEventDestinationsRequestBody = z.infer; export declare const CreatePlatformEventDestinationRequestBody: z.ZodObject<{ events: z.ZodArray>; url: z.ZodString; }, z.core.$strip>; export type CreatePlatformEventDestinationRequestBody = z.infer; export declare const UpdatePlatformEventDestinationRequestBody: z.ZodObject<{ events: z.ZodArray>; url: z.ZodString; }, z.core.$strip>; export type UpdatePlatformEventDestinationRequestBody = z.infer; export declare const TestPlatformEventDestinationRequestBody: z.ZodObject<{ url: z.ZodString; }, z.core.$strip>; export type TestPlatformEventDestinationRequestBody = z.infer; //# sourceMappingURL=dto.d.ts.map