import { AccountImport } from './accountImport'; import { AccountDecodingOptions, AccountEncodingOptions } from './encoder'; export declare enum AccountFormat { Base64Json = "Base64Json", JSON = "JSON", Mnemonic = "Mnemonic", SpendingKey = "SpendingKey" } export declare function encodeAccountImport(value: AccountImport, format: AccountFormat, options?: AccountEncodingOptions): string; export declare function decodeAccountImport(value: string, options?: AccountDecodingOptions): AccountImport; //# sourceMappingURL=account.d.ts.map