export declare namespace Configurations {
    enum Protocols {
        Http = 0,
        Https = 1,
    }
    enum Cache {
        InMemory = 0,
        HardDrive = 1,
    }
    enum LogLevels {
        Error = 1,
        Warning = 2,
        Normal = 3,
        Talkative = 4,
        TalkativeCluster = 5,
    }
    enum Deployment {
        Development = 0,
        Production = 1,
    }
    enum FrameOptions {
        Disabled = 0,
        Deny = 1,
        SameOrigin = 2,
    }
}
