import { Address, Instruction } from "@solana/kit"; export declare class validateRoaInstruction { tag: number; staleness: boolean; static schema: { struct: { tag: string; staleness: string; }; }; constructor(obj: { staleness: boolean; }); serialize(): Uint8Array; getInstruction(programAddress: Address, systemProgram: Address, splNameServiceProgram: Address, feePayer: Address, record: Address, domain: Address, domainOwner: Address, centralState: Address, verifier: Address): Instruction; }