import { PublicKey } from "@solana/web3.js"; import { Record } from "../types/record"; /** * This function deletes a record v2 and returns the rent to the fee payer * @param domain The .sol domain name * @param record The record type enum * @param owner The owner of the record to delete * @param payer The fee payer of the transaction * @returns The delete transaction instruction */ export declare const deleteRecordV2: (domain: string, record: Record, owner: PublicKey, payer: PublicKey) => import("@solana/web3.js").TransactionInstruction;