import * as z from "zod"; export type EscalationPathNodeRepeatV2 = { /** * How many times to repeat these steps */ repeatTimes: number; /** * Which node ID we begin repeating from */ toNode: string; }; /** @internal */ export declare const EscalationPathNodeRepeatV2$inboundSchema: z.ZodType; /** @internal */ export type EscalationPathNodeRepeatV2$Outbound = { repeat_times: number; to_node: string; }; /** @internal */ export declare const EscalationPathNodeRepeatV2$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 EscalationPathNodeRepeatV2$ { /** @deprecated use `EscalationPathNodeRepeatV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EscalationPathNodeRepeatV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EscalationPathNodeRepeatV2$Outbound` instead. */ type Outbound = EscalationPathNodeRepeatV2$Outbound; } //# sourceMappingURL=escalationpathnoderepeatv2.d.ts.map