import { Connection, PublicKey } from "@solana/web3.js"; /** * This function can be used to retrieve all domain names owned by `wallet` in a human readable format * @param connection The Solana RPC connection object * @param wallet The wallet you want to search domain names for * @returns Array of pubkeys and the corresponding human readable domain names */ export declare function getDomainKeysWithReverses(connection: Connection, wallet: PublicKey): Promise<{ pubKey: PublicKey; domain: string | undefined; }[]>;