import * as $ from "./util"; import * as G from "@ton/core"; import type { Instr } from "./instr-gen"; import type { Mapping } from "./builder"; export declare const instr: $.Type; export type codeType = Instr[]; export declare const codeType: () => $.Type; export declare const parseExotic: (cell: G.Cell) => Instr; export declare const compile: (instructions: Instr[]) => Buffer; export declare const compileCell: (instructions: Instr[]) => G.Cell; export declare const compileCellWithMapping: (instructions: Instr[]) => [G.Cell, Mapping]; export declare const decompile: (buffer: Buffer) => Instr[]; export declare const decompileCell: (cell: G.Cell) => Instr[];