import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The current status of the license key. */ export declare const LicenseStatus: { readonly Inactive: "inactive"; readonly Active: "active"; readonly Expired: "expired"; readonly Disabled: "disabled"; }; /** * The current status of the license key. */ export type LicenseStatus = ClosedEnum; /** @internal */ export declare const LicenseStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const LicenseStatus$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=licensestatus.d.ts.map