import { InstructionSet } from "../../PackageSystem/Instructions/InstructionSet.js";
import { Compiler } from "../Compiler.js";
/**
 * Provides the functionality to compile instruction-sets.
 */
export declare class InstructionSetCompiler extends Compiler<InstructionSet> {
    /**
     * Initializes a new instance of the {@link InstructionSetCompiler `InstructionSetCompiler`} class.
     *
     * @param item
     * The item to compile.
     */
    constructor(item: InstructionSet);
    /**
     * @inheritdoc
     */
    protected Compile(): Promise<void>;
}
