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;
    readonly implicit: boolean;
    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";
//# sourceMappingURL=logs.d.ts.map