import { Address, Instruction } from "@solana/kit"; export declare class createNameRegistryInstruction { tag: number; nameHash: Uint8Array; lamports: bigint; space: number; static schema: { struct: { tag: string; nameHash: { array: { type: string; }; }; lamports: string; space: string; }; }; constructor(obj: { nameHash: Uint8Array; lamports: bigint; space: number; }); serialize(): Uint8Array; getInstruction(programAddress: Address, systemProgram: Address, domainAddress: Address, owner: Address, payer: Address, classAddress?: Address, parentAddress?: Address, parentOwner?: Address): Instruction; }