import { Connection, PublicKey } from "@solana/web3.js"; /** * This function can be used to perform a reverse look up * @param connection The Solana RPC connection * @param nameAccount The public key of the domain to look up * @returns The human readable domain name */ export declare function reverseLookup(connection: Connection, nameAccount: PublicKey, parent?: PublicKey): Promise;