/// export declare enum JormungandrAddressKind { singleAddress = 3, groupedAddress = 4, accountAddress = 5, multisigAddress = 6 } export declare enum JormungandrEnvironment { production = "production", testing = "testing" } export declare enum JormungandrAddressName { single = "single", grouped = "grouped", account = "account", multisig = "multisig" } export declare function translateJormungandrAddressKind(kind: JormungandrAddressKind): JormungandrAddressName; export declare type JormungandrAddress = { addressName: JormungandrAddressName; environment: JormungandrEnvironment; }; export declare function decodeJormungandrAddress(bytes: Buffer): JormungandrAddress | null; //# sourceMappingURL=JormungandrAddress.d.ts.map