import { Address, IInstruction } from "@solana/kit"; 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(programAddress: Address, rentSysvarAccount: Address, nameProgramId: Address, rootDomain: Address, nameAccount: Address, reverseLookupAccount: Address, centralState: Address, buyer: Address, buyerTokenAccount: Address, usdcVault: Address, state: Address): IInstruction; }