import { Address, IInstruction } from "@solana/kit"; export declare class ReallocInstruction { tag: number; space: number; static schema: { struct: { tag: string; space: string; }; }; constructor(obj: { space: number; }); serialize(): Uint8Array; getInstruction(programAddress: Address, systemProgramId: Address, payerKey: Address, nameAccountKey: Address, nameOwnerKey: Address): IInstruction; }