import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class Wallets extends ClientSDK { /** * Create a new wallet for an account. You can specify optional attributes such as a display name and description to specify the intended use of the wallet. This will generate a new moov-wallet payment method. * * Read our [Moov wallets guide](https://docs.moov.io/guides/sources/wallets/) to learn more. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/wallets.write` scope. */ create(request: operations.CreateWalletRequest, options?: RequestOptions): Promise; /** * List the wallets associated with a Moov account. * * Read our [Moov wallets guide](https://docs.moov.io/guides/sources/wallets/) to learn more. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/wallets.read` scope. */ list(request: operations.ListWalletsRequest, options?: RequestOptions): Promise; /** * Get information on a specific wallet (e.g., the available balance). * * Read our [Moov wallets guide](https://docs.moov.io/guides/sources/wallets/) to learn more. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/wallets.read` scope. */ get(request: operations.GetWalletRequest, options?: RequestOptions): Promise; /** * Update properties of an existing wallet such as name, description, status, or metadata. * * Read our [Moov wallets guide](https://docs.moov.io/guides/sources/wallets/) to learn more. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/wallets.write` scope. */ update(request: operations.UpdateWalletRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=wallets.d.ts.map