import { VyPromise } from '../core'; import * as wallet from '../models/wallet/index'; import { VyApiBase } from './VyApiBase'; import { VyWalletAPI_Gen } from './VyWalletAPI.generated'; export declare class VyWalletAPI extends VyWalletAPI_Gen { constructor(apiBase: VyApiBase); /** * Archive a wallet * @param {string} id - The id of the wallet * @param {VyUserAuth} signingMethod - This operation requires a valid Signing-Method from the corresponding user * @returns {VyWalletDto} Updated Wallet */ archiveWallet(id: string): VyPromise; /** * Unarchive a wallet * @param {string} id - The id of the wallet * @param {VyUserAuth} signingMethod - This operation requires a valid Signing-Method from the corresponding user * @returns {VyWalletDto} Updated Wallet */ unarchiveWallet(id: string): VyPromise; } //# sourceMappingURL=VyWalletAPI.d.ts.map