/** * Copyright (c) Microblink Ltd. All rights reserved. */ /** * Represents the different levels of detection sensitivity. * * This enum class is used to configure detection thresholds and enable or * disable detection functionality. The levels range from turning detection * off completely to setting various levels of sensitivity (Low, Mid, High). */ export declare enum DetectionLevel { Off = 0, Low = 1, Mid = 2, High = 3 }