import { PublicKey, TransactionInstruction } from "@solana/web3.js"; export declare class createReverseInstruction { tag: number; name: string; static schema: { struct: { tag: string; name: string; }; }; constructor(obj: { name: string; }); serialize(): Uint8Array; getInstruction(programId: PublicKey, namingServiceProgram: PublicKey, rootDomain: PublicKey, reverseLookup: PublicKey, systemProgram: PublicKey, centralState: PublicKey, feePayer: PublicKey, rentSysvar: PublicKey, parentName?: PublicKey, parentNameOwner?: PublicKey): TransactionInstruction; }