import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; import { PageIterator } from "../types/operations.js"; export declare class ThreeDsScenarios extends ClientSDK { /** * Create a 3DS scenario * * @remarks * Create a new 3DS scenario for a merchant account. Only available in sandbox environments. */ create(threeDSecureScenarioCreate: components.ThreeDSecureScenarioCreate, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * List 3DS scenario * * @remarks * List all 3DS scenarios for a merchant account. Only available in sandbox environments. */ list(cursor?: string | null | undefined, limit?: number | undefined, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise>; /** * Update a 3DS scenario * * @remarks * Update a 3DS scenario. Only available in sandbox environments. */ update(threeDSecureScenarioUpdate: components.ThreeDSecureScenarioUpdate, threeDsScenarioId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Delete a 3DS scenario * * @remarks * Removes a 3DS scenario from our system. Only available in sandbox environments. */ delete(threeDsScenarioId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=threedsscenarios.d.ts.map