Drawing on this conversation, I was able to resolve the issue on the author's GitHub page as follows:
---
output:
pdf_document:
header-includes:
- \usepackage{tabularray}
---
```{=latex}
\DefTblrTemplate{firsthead,middlehead,lasthead}{default}{}
\DefTblrTemplate{firstfoot,middlefoot}{default}{}
\DefTblrTemplate{lastfoot}{default}%
{
\UseTblrTemplate{caption}{default}
}
```
```{r, echo=FALSE}
library(modelsummary)
library(tinytable)
mod <- list()
mod[['One variable']] <- lm(mpg ~ hp, mtcars)
mod[['Two variables']] <- lm(mpg ~ hp + drat, mtcars)
modelsummary(mod,
title = "Regression Models")|>
style_tt(tabularray_outer = "label={tblr:test}")
```
Table \ref{tblr:test}