import { Cell } from "@ton/core"; import { Mapping } from "../runtime"; export declare function collectAsmCoverage(cell: Cell, logs: string): { lines: readonly import("@/asm/coverage/data").Line[]; summary: import("@/asm/coverage/data").CoverageSummary; }; export declare function collectFuncCoverage(cell: Cell, logs: string, funcSources: string, funcMappingPath: string): { lines: import("@/asm/coverage/data").Line[]; summary: import("@/asm/coverage/data").CoverageSummary; }; export declare const recompileCell: (cell: Cell, forFunC: boolean) => [Cell, Mapping]; export * from "./html"; export * from "./text"; export * from "./integrations"; export * from "./data";