import { Address, IInstruction } from "@solana/kit"; export declare class createSplitV2Instruction { tag: number; name: string; space: number; referrerIdxOpt: number | null; static schema: { struct: { tag: string; name: string; space: string; referrerIdxOpt: { option: string; }; }; }; constructor(obj: { name: string; space: number; referrerIdxOpt: number | null; }); serialize(): Uint8Array; getInstruction(programAddress: Address, namingServiceProgram: Address, rootDomain: Address, name: Address, reverseLookup: Address, systemProgram: Address, centralState: Address, buyer: Address, domainOwner: Address, feePayer: Address, buyerTokenSource: Address, pythFeedAccount: Address, vault: Address, splTokenProgram: Address, rentSysvar: Address, state: Address, referrerAccountOpt?: Address): IInstruction; }