/** * Parses a bech32 address to bytes. * @param bech32Address The bech32 address string to parse. * @param chainAlias The chain alias to add to the address if it's not already present. * @returns The bytes of the address. */ export declare function parseBech32AddressToBytes(bech32Address: string, chainAlias?: string): Uint8Array; export declare function evmAddressToBytes(address: string): Uint8Array; export declare function bech32AddressToBytes(address: string): Uint8Array; export declare function evmOrBech32AddressToBytes(address: string): Uint8Array; //# sourceMappingURL=utils.d.ts.map