import { Instruction } from "./types"; /** * Convert decoded instruction object to source text * * @param {Instruction} instruction Decoded instruction * @returns {string} Source instruction text */ export declare function instructionToString(instruction: Instruction): string;