import { z } from 'zod'; import { Cursor } from '../../../../core/common/seek-page'; import { FlowId } from '../../flow'; export declare const ListTriggerEventsRequest: z.ZodObject<{ projectId: z.ZodString; flowId: z.ZodString; limit: z.ZodOptional>; cursor: z.ZodOptional; }, z.core.$strip>; export type ListTriggerEventsRequest = Omit, 'flowId' | 'cursor'> & { flowId: FlowId; cursor: Cursor | undefined; }; export declare const SaveTriggerEventRequest: z.ZodObject<{ projectId: z.ZodString; flowId: z.ZodString; mockData: z.ZodUnknown; }, z.core.$strip>; export type SaveTriggerEventRequest = z.infer; //# sourceMappingURL=trigger-events-dto.d.ts.map