import { OpCodes } from './opcodes'; import type { Program } from './svml-compiler'; /** * Returns name of opcode for debugging */ export declare function getName(op: OpCodes): string | undefined; export declare function stringifyProgram(P: Program): string;