import { AddressLookupTableAccount, Connection, MessageV0, TransactionInstruction, VersionedMessage } from '@solana/web3.js'; import { HumanizedIx } from './types'; /** Resolve address lookup tables of a versioned (V0) message. */ export declare function getLookupTables(connection: Connection, message: VersionedMessage): Promise; export declare function ixToHuman(instructions: TransactionInstruction[]): HumanizedIx[]; export declare function chunk(items: T[], size: number): T[][]; export declare function serializeV0(mssgV0: MessageV0): string; export declare function deserializeV0(mssgV0: string): MessageV0;