import { PublicKey, TransactionInstruction } from "@solana/web3.js"; export declare class createWithNftInstruction { tag: number; name: string; space: number; static schema: { struct: { tag: string; name: string; space: string; }; }; constructor(obj: { name: string; space: number; }); serialize(): Uint8Array; getInstruction(programId: PublicKey, namingServiceProgram: PublicKey, rootDomain: PublicKey, name: PublicKey, reverseLookup: PublicKey, systemProgram: PublicKey, centralState: PublicKey, buyer: PublicKey, nftSource: PublicKey, nftMetadata: PublicKey, nftMint: PublicKey, masterEdition: PublicKey, collection: PublicKey, splTokenProgram: PublicKey, rentSysvar: PublicKey, state: PublicKey, mplTokenMetadata: PublicKey): TransactionInstruction; }