import { PolarCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { LicenseKeyValidate } from "../models/components/licensekeyvalidate.js"; import { ValidatedLicenseKey } from "../models/components/validatedlicensekey.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { HTTPValidationError } from "../models/errors/httpvalidationerror.js"; import { PolarError } from "../models/errors/polarerror.js"; import { ResourceNotFound } from "../models/errors/resourcenotfound.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Validate License Key * * @remarks * Validate a license key. * * > This endpoint doesn't require authentication and can be safely used on a public * > client, like a desktop application or a mobile app. * > If you plan to validate a license key on a server, use the `/v1/license-keys/validate` * > endpoint instead. */ export declare function customerPortalLicenseKeysValidate(client: PolarCore, request: LicenseKeyValidate, options?: RequestOptions): APIPromise>; //# sourceMappingURL=customerPortalLicenseKeysValidate.d.ts.map