import { IReadWriteWallet, IWalletImportFormat } from "./contracts"; export declare class WalletImportFormat implements IWalletImportFormat { #private; constructor(wallet: IReadWriteWallet); /** {@inheritDoc IWalletImportFormat.get} */ get(password: string): Promise; /** {@inheritDoc IWalletImportFormat.set} */ set(value: string, password: string): Promise; /** {@inheritDoc IWalletImportFormat.exists} */ exists(): boolean; }