import * as z from "zod"; export type FollowUpPriorityV2 = { /** * Description of the follow-up priority option */ description?: string | undefined; /** * Unique identifier for the follow-up priority option */ id: string; /** * Name of the follow-up priority option */ name: string; /** * Rank is used to order the follow-up priority options correctly */ rank: number; }; /** @internal */ export declare const FollowUpPriorityV2$inboundSchema: z.ZodType; /** @internal */ export type FollowUpPriorityV2$Outbound = { description?: string | undefined; id: string; name: string; rank: number; }; /** @internal */ export declare const FollowUpPriorityV2$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 FollowUpPriorityV2$ { /** @deprecated use `FollowUpPriorityV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FollowUpPriorityV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FollowUpPriorityV2$Outbound` instead. */ type Outbound = FollowUpPriorityV2$Outbound; } //# sourceMappingURL=followuppriorityv2.d.ts.map