import { z } from 'zod'; export declare enum TriggerTestStrategy { SIMULATION = "SIMULATION", TEST_FUNCTION = "TEST_FUNCTION" } export declare const TestTriggerRequestBody: z.ZodObject<{ projectId: z.ZodString; flowId: z.ZodString; flowVersionId: z.ZodString; testStrategy: z.ZodEnum; }, z.core.$strip>; export type TestTriggerRequestBody = z.infer; export declare const CancelTestTriggerRequestBody: z.ZodObject<{ projectId: z.ZodString; flowId: z.ZodString; }, z.core.$strip>; export type CancelTestTriggerRequestBody = z.infer; //# sourceMappingURL=test-trigger.d.ts.map