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 keys of the domains to look up * @returns The human readable domain names */ export declare function reverseLookupBatch(connection: Connection, nameAccounts: PublicKey[]): Promise<(string | undefined)[]>;