Typing <Text /> from Drei for typescript

Hi,

I made this :

import {Text} from "@react-three/drei";

export default function Ttext() {
type TypeText = typeof Text;

const reftext = useRef<TypeText>(null!)

useFrame((state, delta) => {
      
      reftext.current.position.y=...
      reftext.current.outlineColor=...

...})

return (
<Text
          ref={reftext}
          toneMapped={false}

Everything works great but the parameter toneMapped,position and outLineColor are not found on thee type I gave. What to do ?