import type { StackElement } from "../logs"; /** * Represents a single TVM Sandbox log entry. */ export type LogEntry = { readonly hash: string; readonly offset: number; readonly stack: readonly StackElement[]; readonly gas: number; gasCost: number; }; /** * Parses a TVM Sandbox log into a list of transactions, each containing a list of log entries. */ export declare function parseLogs(log: string): LogEntry[][]; export type { StackElement } from "../logs";