import { PublicKey, TransactionInstruction } from "@solana/web3.js"; export declare class createV2Instruction { 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, rentSysvarAccount: PublicKey, nameProgramId: PublicKey, rootDomain: PublicKey, nameAccount: PublicKey, reverseLookupAccount: PublicKey, centralState: PublicKey, buyer: PublicKey, buyerTokenAccount: PublicKey, usdcVault: PublicKey, state: PublicKey): TransactionInstruction; }