/** * @overload * @param {string} bech32OrBase58 * @returns {Address} */ export function decodeAddress(bech32OrBase58: string): Address; /** * @overload * @param {BytesLike} cbor * @returns {Address} */ export function decodeAddress(cbor: BytesLike): Address; /** * @import { BytesLike } from "@helios-lang/codec-utils" * @import { Address } from "../index.js" */ /** * Alias for makeShelleyAddress */ export const makeAddress: typeof makeShelleyAddress; /** * Alias for makeDummyShelleyAddress */ export const makeDummyAddress: typeof makeDummyShelleyAddress; import type { Address } from "../index.js"; import type { BytesLike } from "@helios-lang/codec-utils"; import { makeShelleyAddress } from "./ShelleyAddress.js"; import { makeDummyShelleyAddress } from "./ShelleyAddress.js"; //# sourceMappingURL=Address.d.ts.map