export declare enum ExtentionHooksEnum {
    OnExtensionLoad,
    OnModuleInstantiated,
    OnShutdown,
}
export declare enum ModuleEnum {
    OnStart,
    OnError,
    OnRegister,
}
/**
 * Represents the position where
 * the module is instantiate
 */
export declare enum ModuleLevel {
    ROOT = 0,
    PRIMARY = 1,
    SECONDARY = 2,
}
export declare enum ExtensionShutdownPriority {
    IMPORTANT = 0,
    NORMAL = 1,
}
