import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class PaymentServiceTokens extends ClientSDK { /** * List payment service tokens * * @remarks * List all gateway tokens stored for a payment method. */ list(paymentMethodId: string, paymentServiceId?: string | null | undefined, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Create payment service token * * @remarks * Create a gateway tokens for a payment method. */ create(paymentServiceTokenCreate: components.PaymentServiceTokenCreate, paymentMethodId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Delete payment service token * * @remarks * Delete a gateway tokens for a payment method. */ delete(paymentMethodId: string, paymentServiceTokenId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=paymentservicetokens.d.ts.map