declare enum Lifecycle {
    Transient = 0,
    Singleton = 1,
    ResolutionScoped = 2,
    ContainerScoped = 3
}
export default Lifecycle;
