import { IInstructionSetOptions } from "./IInstructionSetOptions.js";
/**
 * Provides options for the {@link UpdateInstructionSet `UpdateInstructionSet`} class.
 */
export interface IUpdateInstructionSetOptions extends IInstructionSetOptions {
    /**
     * The version to update the package from.
     */
    FromVersion: string;
}
