import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class WalletTransactions extends ClientSDK { /** * List all the transactions associated with a particular Moov wallet. * * Read our [wallet transactions guide](https://docs.moov.io/guides/sources/wallets/transactions/) 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.ListWalletTransactionsRequest, options?: RequestOptions): Promise; /** * Get details on a specific wallet transaction. * * Read our [wallet transactions guide](https://docs.moov.io/guides/sources/wallets/transactions/) 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.GetWalletTransactionRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=wallettransactions.d.ts.map