import * as CML from "../CML/index.js"; import * as Credential from "./Credential_old.js"; /** Bech32 */ export type RewardAddress = string; /** Bech32 */ export type Address = string; export type AddressType = "Base" | "Enterprise" | "Pointer" | "Reward" | "Byron"; export type AddressDetails = { type: AddressType; networkId: number; address: { bech32: Address; hex: string; }; paymentCredential?: Credential.Credential; stakeCredential?: Credential.Credential; }; /** Address can be in Bech32 or Hex. */ export declare function getAddressDetails(address: string): AddressDetails; export declare function unsafeFromHexOrBech32(address: string): CML.Address.Address; //# sourceMappingURL=Address_old.d.ts.map