/**
 * Enumerates the reasons why an authentication operation can fail.
 *
 * @deprecated Use @studyportals/client-internal-platform-sso
 */
declare enum AuthenticationFailureReason {
    /**
     * The specified user identifier does not exist.
     */
    USER_DOES_NOT_EXIST = 0,
    /**
     * The specified secret is incorrect.
     */
    INCORRECT_SECRET = 1
}
export { AuthenticationFailureReason };
