import { FlexpriceCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { FlexPriceError } from "../sdk/models/flex-price-error.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../sdk/models/http-client-errors.js"; import * as models from "../sdk/models/index.js"; import { ResponseValidationError } from "../sdk/models/response-validation-error.js"; import { SDKValidationError } from "../sdk/models/sdk-validation-error.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get Customer Wallets * * @remarks * Use when resolving wallets by external customer id or lookup key (e.g. from your app's user id). Supports optional real-time balance and expand. */ export declare function walletsGetCustomerWallets(client: FlexpriceCore, request?: models.GetCustomerWalletsRequest | undefined, options?: RequestOptions): APIPromise, models.ErrorsErrorResponse | FlexPriceError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>; //# sourceMappingURL=wallets-get-customer-wallets.d.ts.map