import { PublicKey } from "@solana/web3.js"; import { Record } from "../types/record"; /** * This function can be used be create a record V2, it handles the serialization of the record data following SNS-IP 1 guidelines * @param domain The .sol domain name * @param record The record enum object * @param recordV2 The `RecordV2` object that will be serialized into the record via the update instruction * @param owner The owner of the domain * @param payer The fee payer of the transaction * @returns */ export declare const createRecordV2Instruction: (domain: string, record: Record, content: string, owner: PublicKey, payer: PublicKey) => import("@solana/web3.js").TransactionInstruction;