import { Connection, PublicKey } from "@solana/web3.js"; /** * This function can be used to retrieve the owner of a tokenized domain name * * @param connection The solana connection object to the RPC node * @param nameAccount The key of the domain name * @returns */ export declare const retrieveNftOwner: (connection: Connection, nameAccount: PublicKey) => Promise;