import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ValidateLicenseRequestEntity = { /** * The license key to validate. */ key: string; /** * Id of the instance to validate. */ instanceId: string; }; /** @internal */ export declare const ValidateLicenseRequestEntity$inboundSchema: z.ZodType; /** @internal */ export type ValidateLicenseRequestEntity$Outbound = { key: string; instance_id: string; }; /** @internal */ export declare const ValidateLicenseRequestEntity$outboundSchema: z.ZodType; export declare function validateLicenseRequestEntityToJSON(validateLicenseRequestEntity: ValidateLicenseRequestEntity): string; export declare function validateLicenseRequestEntityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=validatelicenserequestentity.d.ts.map