hello is is possible to create alias for ref :
const [ref, {top, right, bottom, left }] = useMeasure();
i tried using : and as and it didn't work
const [ref : name, {top, right, bottom, left }] = useMeasure();
const [ref as name, {top, right, bottom, left }] = useMeasure();