import { Address, Instruction } from "@solana/kit"; interface BurnDomainParams { domain: string; owner: Address; refundAddress: Address; } /** * Generates an instruction to burn a domain. * * @param params - An object containing the following properties: * - `domain`: The domain name to be burned. * - `owner`: The address of the current owner of the domain. * - `refundAddress`: The address to which rent will be refunded. * @returns A promise which resolves to the burn domain instruction. */ export declare const burnDomain: ({ domain, owner, refundAddress, }: BurnDomainParams) => Promise; export {};