/** * Original work Copyright (c) 2024 Signum Network */ /** * Computes the Account ID from Public Key * @param publicKey The public key (64 character hex string) * @return A numeric string - The Account ID * * @category address */ export declare function getAccountIdFromPublicKey(publicKey: string): string;