import { PublicKey } from "@solana/web3.js"; /** * This function can be used to get the reverse key from a domain key * @param domainKey The domain key to compute the reverse for * @param parent The parent public key * @returns The public key of the reverse account */ export declare const getReverseKeyFromDomainKey: (domainKey: PublicKey, parent?: PublicKey) => PublicKey;