import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class Wires extends ClientSDK { /** * Get Wire Deposit * * @remarks * Gets an existing wire deposit */ getWireDeposit(accountId: string, wireDepositId: string, options?: RequestOptions): Promise; /** * Create Wire Withdrawal * * @remarks * Creates a wire withdrawal */ createWireWithdrawal(wireWithdrawalCreate: components.WireWithdrawalCreate, accountId: string, options?: RequestOptions): Promise; /** * Get Wire Withdrawal * * @remarks * Gets an existing wire withdrawal */ getWireWithdrawal(accountId: string, wireWithdrawalId: string, options?: RequestOptions): Promise; /** * Cancel Wire Withdrawal * * @remarks * Cancels an existing wire withdrawal */ cancelWireWithdrawal(cancelWireWithdrawalRequestCreate: components.CancelWireWithdrawalRequestCreate, accountId: string, wireWithdrawalId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=wires.d.ts.map