import { Address, Instruction } from "@solana/kit"; export declare class createReverseInstruction { tag: number; domain: string; static schema: { struct: { tag: string; domain: string; }; }; constructor(obj: { domain: string; }); serialize(): Uint8Array; getInstruction(programAddress: Address, namingServiceProgram: Address, rootDomain: Address, reverseLookup: Address, systemProgram: Address, centralState: Address, payer: Address, rentSysvar: Address, parentAddress?: Address, parentOwner?: Address): Instruction; }