export * from "./types";
export { decodeInstruction } from "./decode";
export { instructionToString } from "./to_string";
/**
 * Convenience function to decode and convert to string
 *
 * @param code {Uint8Array} Instruction byte array
 * @returns {string} Source instruction text
 */
export declare function decodeInstructionToString(code: Uint8Array): string;
