I want to export my estat icc after mixed model regression into a single table as LaTeX format.

Code:
 mixed InExp age i.n_gender  i.year||HHID:||city:,reml iterate(10)
Code:
 estat icc // I want to store this as model1
Code:
 mixed InExp age i.n_gender  i.year||HHID:||city: if group=="Target",reml iterate(10)
Code:
 estat icc // I want to store this as model2
By having only ICC and standard error in parentheses below no coefficient from regression needed.

Something like this:
Class Model1 Model2
1-level xxx xxx
(xxx) (xxx)
2-level xxx xxx
(xxx) (xxx)
Is it possible?
If so, could you please suggest how I can make this table?
Thank you very much.