declare enum BindingType {
    Invalid = 0,
    Instance = 1,
    ConstantValue = 2,
    DynamicValue = 3,
    Constructor = 4,
    Factory = 5,
    Function = 6,
    Provider = 7,
}
export default BindingType;
