import { Address, Slice } from '@ton/core';
export declare class DebugReader {
    protected readonly entries: string[];
    protected index: number;
    constructor(entries: string[]);
    static fromLogs(logs: string): DebugReader;
    next(): string;
    protected nextAsStackItem(): string;
    nextInt(): number;
    nextBigInt(): bigint;
    nextBool(): boolean;
    nextSlice(): Slice;
    nextAddress(): Address;
    isEOF(): boolean;
}
