With TYPE=CS:
You can calulate ICC manually from the values in "Covariance Parameter Estimates" table as
ICC = Common Covariance Estimate / (Residual Variance Estimate + Common Covariance Estimate)
Or use the RCORR option and let SAS to report the intraclass correlation coefficient in the "Estimated R Correlation Matrix"
REPEATED / SUBJECT=normalsubject TYPE=CS rcorr;
.....
... View more