import { DecodedInstruction } from "./types";
/**
 * Attempt to decode a single M68000 instruction starting at `code[0]`
 *
 * @param {Uint8Array} code Instruction byte array
 * @returns {DecodedInstruction} Decoded instruction structured data
 */
export declare function decodeInstruction(code: Uint8Array): DecodedInstruction;
