import * as z from "zod"; export type SeverityV2 = { /** * When the action was created */ createdAt: Date; /** * Description of the severity */ description: string; /** * Unique identifier of the severity */ id: string; /** * Human readable name of the severity */ name: string; /** * Rank to help sort severities (lower numbers are less severe) */ rank: number; /** * When the action was last updated */ updatedAt: Date; }; /** @internal */ export declare const SeverityV2$inboundSchema: z.ZodType; /** @internal */ export type SeverityV2$Outbound = { created_at: string; description: string; id: string; name: string; rank: number; updated_at: string; }; /** @internal */ export declare const SeverityV2$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 SeverityV2$ { /** @deprecated use `SeverityV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SeverityV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SeverityV2$Outbound` instead. */ type Outbound = SeverityV2$Outbound; } //# sourceMappingURL=severityv2.d.ts.map