Suppose a linear regression model $Y=Xβ+ε$ where $X$ is an $n$-by-$(k+1)$ matrix and $\epsilon$ follows $N(0,\sigma^2I_n)$. $k$ is the number of explanatory variables. The first column of $X$ is one (intercept).
Or we can write in this form: $Y=β_0+β_1X_1+...+β_kX_k+\epsilon$
I learned from the book "Introductory Econometrics - Wooldridge" that the variance of $\hat\beta_j$ is
$\operatorname{var}(\hat\beta_j)=\sigma^2/SST_j/(1-R_j^2)$
This only holds for $j=1,...,k$. But for $\hat\beta_0$, $SST_0=0$ and it is not valid.
I have already known that $\operatorname{var}(\hat\beta)=\sigma^2(X'X)^{-1}$ but that doesn't give an explicit formula of $\operatorname{var}(\hat\beta_0)$. Is there any clear way just like what we have on $\operatorname{var}(\hat\beta_j)$?
I also know that if $k=1$ then $\operatorname{var}(\hat\beta_0)=\sigma^2\sum x_i^2/SST_x/n$. Is there any similar result when $k>1$?
QUESTION: What is the variance of intercept estimator?
$\operatorname{var}(\hat\beta_0)=?$