import { PolarCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { CustomerState } from "../models/components/customerstate.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 { CustomersGetStateExternalRequest } from "../models/operations/customersgetstateexternal.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get Customer State by External ID * * @remarks * Get a customer state by external ID. * * The customer state includes information about * the customer's active subscriptions and benefits. * * It's the ideal endpoint to use when you need to get a full overview * of a customer's status. * * **Scopes**: `customers:read` `customers:write` */ export declare function customersGetStateExternal(client: PolarCore, request: CustomersGetStateExternalRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=customersGetStateExternal.d.ts.map