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