import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Meta = string | number | number | boolean; export type LicenseKeyActivationBase = { id: string; licenseKeyId: string; label: string; meta: { [k: string]: string | number | number | boolean; }; createdAt: Date; modifiedAt: Date | null; }; /** @internal */ export declare const Meta$inboundSchema: z.ZodMiniType; export declare function metaFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const LicenseKeyActivationBase$inboundSchema: z.ZodMiniType; export declare function licenseKeyActivationBaseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=licensekeyactivationbase.d.ts.map