MCUXpresso SDK has tensorflow lite for microcontroller (TFLm) examples. If your model does not contain operators that is not supported by TFLm, in general it could be inferenced, and note that you may need some pre-processing and post-processing code besides the model inference.
An important note is:in the eIQ example, it configures TFLm to include only the operators needed by the example model (mobilenet) to save flash size, it is VERY LIKELY that your model use other operators so the safest way is modify the code in "model.cpp" to use "tflite::AllOpsResolver" instead of MODEL_GetOpsResolver() (in model_mobilenet_ops_micro.cpp). After you know the exact operators required by your model, you can also specify your version of MODEL_GetOpsResolver() to only include needed operators to save flash.