export declare enum ICoreStage {
    uninitialized = 0,
    init = 1,
    initPlugins = 2,
    pluginReady = 3,
    getConfig = 4,
    start = 5
}
export declare enum ICoreApplyHookTypes {
    add = "add",
    modify = "modify",
    event = "event"
}
export declare const Cycle: readonly ["onPluginReady", "modifyConfig", "onStart"];
