import { PublicKey } from "@solana/web3.js"; import { Record } from "../types/record"; /** * This function derives a record v2 key * @param domain The .sol domain name * @param record The record to derive the key for * @returns Public key of the record */ export declare const getRecordV2Key: (domain: string, record: Record) => PublicKey;