/**
 * Utilities for address operations
 */
export declare class AddressUtils {
    /**
     * Convert bech32 address to hex string
     * @param addr Bech32 address
     * @returns Hex address
     */
    static getAddrHexFromBech32(addr: string): string;
}
