import { ISparnaturalSpecification } from "../spec-providers/ISparnaturalSpecification";
import SparnaturalComponent from "../components/SparnaturalComponent";
export declare enum MaxVarAction {
    INCREASE = 0,
    DECREASE = 1,
    RESET = 2
}
declare class ActionStore {
    #private;
    sparnatural: SparnaturalComponent;
    specProvider: any;
    language: string;
    showVariableNames: boolean;
    quiet: boolean;
    constructor(sparnatural: SparnaturalComponent, specProvider: ISparnaturalSpecification);
}
export default ActionStore;
