import * as z from "zod"; export type WorkflowDelay = { /** * If this workflow is delayed, whether the conditions should be rechecked between trigger firing and execution */ conditionsApplyOverDelay: boolean; /** * Delay in seconds between trigger firing and running the workflow */ forSeconds: number; }; /** @internal */ export declare const WorkflowDelay$inboundSchema: z.ZodType; /** @internal */ export type WorkflowDelay$Outbound = { conditions_apply_over_delay: boolean; for_seconds: number; }; /** @internal */ export declare const WorkflowDelay$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace WorkflowDelay$ { /** @deprecated use `WorkflowDelay$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WorkflowDelay$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WorkflowDelay$Outbound` instead. */ type Outbound = WorkflowDelay$Outbound; } //# sourceMappingURL=workflowdelay.d.ts.map