import { Cell, type ShardAccount } from '@ton/core'; import { DebugInfo as FuncDebugInfo } from '@ton-community/func-js'; import type { DebugInfo } from './Debuggee'; export type DebugInfoCache = Map; export declare function getDebugInfo(acc: ShardAccount): { uninitialized: boolean; debugInfo: DebugInfo | undefined; }; export declare function registerCompiledContract(code: Cell, debugInfo: FuncDebugInfo, marks: Cell): Cell;