import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { Cryptogram } from "./cryptogram.js"; export declare class NetworkTokens extends ClientSDK { private _cryptogram?; get cryptogram(): Cryptogram; /** * List network tokens * * @remarks * List all network tokens stored for a payment method. */ list(paymentMethodId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Provision network token * * @remarks * Provision a network token for a payment method. */ create(networkTokenCreate: components.NetworkTokenCreate, paymentMethodId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Suspend network token * * @remarks * Suspend a network token for a payment method. */ suspend(paymentMethodId: string, networkTokenId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Resume network token * * @remarks * Resume a suspended network token for a payment method. */ resume(paymentMethodId: string, networkTokenId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Delete network token * * @remarks * Delete a network token for a payment method. */ delete(paymentMethodId: string, networkTokenId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=networktokens.d.ts.map