I mean that crucially depends on the base cases. Like if there are no base cases that's an infinite recursion because in order to now just about any n you'd also have to know F(n-1), F(n-2) and F(F(n-1)-F(n-2)). Which means you also need to know F(n-2), F(n-3) and F(F(n-2)-F(n-3)) and so on. So without any fixed value(s) of F(n) = X and likely also an F(n-1) =Y or F(n+1) = Y that is not possible to compute.
But even if we were to have arbitrary base cases like F(0) = F0 and F(1) = F1 then we'd still have the problem that F(2) for example would require the knowledge of what F(F1-F0) is and the answer to what F0-F1 is effects the complexity of that thing majorly.
if it's 0 for example than F(2) = F(0) = F0. Then F(3) = F(F(2)-F(1)) = F(F0 -F1) which is likely also 0 as A-B = 0 implies B-A = 0. So F(3) = F(0) = F0. So F(n) would be F0 for any n > 2. Which is constant. And F1 would be F0 in order for F1-F0 to be 0 and as F(1) = F(F0-F(n-1)) and F(1) = F(0) Therefore F(n-1) must also be F0 Meaning F(n) = F0 drop all the recursions it's one constant all the way through.
If it's 1 then F(2) = F(1) = F1. The F(3) would be F(F1-F1) which would be 0 so F(3) would be F(0). So F(4) = F(F3-F2) = F(F0-F1). Where is F1-F0 = 1 then F0 -F1 = -1. And you're back in an infinite recursion because in order to compute F(-1) you'd need to know F(-3) and for that you'd need F(-5) and so on.
If it's 2 you'd also get something interesting like: F(2) = F(F1 -F0) = F(2). So a tautology F(2) is F(2). Meaning all other n > 2 are not able to be computed because it's unknown what even F(2) is.
Not to mention that if I'd take F1-F0 to be arbitrary large that obviously takes a lot more computations then if it were small. So the complexity changes rapidly. Whether the number is increasing and I'd need more calculations to reach the base case or whether it is decreasing.
And if it reached negative numbers I'd again be screwed because it would turn again into an infinite recursion.
So no you kinda need a base case otherwise that could behave so differently for different cases that it's hard to impossible to make any generalizing statements.