import * as z from "zod"; export type CreateRequestBody13 = { /** * Description of the severity */ description: string; /** * Human readable name of the severity */ name: string; /** * Rank to help sort severities (lower numbers are less severe) */ rank?: number | undefined; }; /** @internal */ export declare const CreateRequestBody13$inboundSchema: z.ZodType; /** @internal */ export type CreateRequestBody13$Outbound = { description: string; name: string; rank?: number | undefined; }; /** @internal */ export declare const CreateRequestBody13$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 CreateRequestBody13$ { /** @deprecated use `CreateRequestBody13$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateRequestBody13$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateRequestBody13$Outbound` instead. */ type Outbound = CreateRequestBody13$Outbound; } //# sourceMappingURL=createrequestbody13.d.ts.map