declare enum VisitLimitControl {
    /**
     * Não Controla
     */
    DOES_NOT_CONTROL = "DOES_NOT_CONTROL",
    /**
     * Alerta
     */
    ALERT = "ALERT",
    /**
     * Bloqueia
     */
    BLOCK = "BLOCK"
}
export = VisitLimitControl;
