import { Address, Instruction } from "@solana/kit"; export declare class UpdateNameRegistryInstruction { tag: number; offset: number; inputData: Uint8Array; static schema: { struct: { tag: string; offset: string; inputData: { array: { type: string; }; }; }; }; constructor(obj: { offset: number; inputDat: Uint8Array; }); serialize(): Uint8Array; getInstruction(programAddress: Address, domainAddress: Address, signer: Address): Instruction; }