import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class PaymentMethods extends ClientSDK { /** * Retrieve a list of payment methods associated with a Moov account. Read our [payment methods * guide](https://docs.moov.io/guides/money-movement/payment-methods/) 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}/payment-methods.read` scope. */ list(request: operations.ListPaymentMethodsRequest, options?: RequestOptions): Promise; /** * Get the specified payment method associated with a Moov account. Read our [payment methods guide](https://docs.moov.io/guides/money-movement/payment-methods/) 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}/payment-methods.read` scope. */ get(request: operations.GetPaymentMethodRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=paymentmethods.d.ts.map