export declare enum ESeonErrorCodes {
    UA100 = "General unauthorized error",
    UA101 = "Missing authorization token",
    UA102 = "Invalid authorization token",
    UA103 = "Missing customer identifier in JWT",
    UA104 = "Missing session identifier in JWT",
    UA105 = "Missing expiration in JWT",
    UA106 = "Token expired",
    UA107 = "Session not found",
    UA108 = "Session is not active",
    UA109 = "Missing license key",
    UA110 = "Invalid license key format",
    UA111 = "Customer not found",
    UA112 = "Customer is inactive",
    UA113 = "Customer ID in CMS is different from the one associated with the API key",
    UA114 = "Platform or PlatformId is missing",
    UA115 = "Invalid platform",
    UA116 = "Customer license not found",
    UA117 = "Request body is missing",
    UA118 = "Customer ID not found in request context",
    UA119 = "Session ID not found in request context",
    RV100 = "General request validation error",
    RV101 = "Missing parameter",
    RV102 = "Invalid parameter",
    RV103 = "Invalid request body",
    RV104 = "Invalid JSON",
    RV105 = "Liveness check is disabled",
    RV106 = "No finished document check exists",
    RV107 = "Liveness check is not retirable",
    RV108 = "Platform ID missing from referer",
    RV109 = "Document type not accepted",
    RV110 = "Document check is not retirable",
    RV111 = "Document check retry limit reached",
    RV112 = "Liveness check in current state does not accept video files",
    RV113 = "Invalid timestamp count",
    NF100 = "General not found error",
    NF101 = "Path not found",
    NF102 = "Session not found",
    NF103 = "Customer session settings not found",
    NF104 = "Microblink license not found",
    NF105 = "Liveness check not found",
    DB100 = "General database error",
    DB101 = "Failed to commit transaction",
    DB102 = "Failed to rollback transaction",
    DB103 = "Session creation failed",
    RE100 = "General resource already exists error",
    FO100 = "General forbidden error",
    DE100 = "General external dependency error",
    DE101 = "CMS call failed",
    DE102 = "Failed to create presigned URL",
    IE100 = "General internal server error",
    IE101 = "Failed to create JWT"
}
