import { Instruction } from "./Instruction.js";
/**
 * Provides options for the {@link InstructionSet `InstructionSet`} class.
 */
export interface IInstructionSetOptions {
    /**
     * The directory to save the components of this set.
     */
    Directory?: string;
    /**
     * The instructions of the instruction-set.
     */
    Instructions: Instruction[];
}
