export declare namespace infinityCenterConstants {
    enum confidenceResults {
        low = "error",
        mid = "warn",
        high = "success"
    }
    enum confidenceThreshholds {
        low = 50,
        mid = 90,
        high = 100
    }
    function getConfidenceResult(value: number): string;
}
