import { NETWORK } from "./enums"; export declare const AddressUtils: { toStakeAddress: (paymentAddress: string, network?: NETWORK) => string; compareAddresses: (paymentAddress1: string, paymentAddress2: string) => boolean; convertFromHexAddressToBech32: (address: string) => string; convertFromPaymentAddressToHex: (address: string) => string; convertFromPaymentAddressToPubKeyHash: (address: string) => string; convertToPubKeyHash: (address: string) => string; };