I am trying to use breeze template with typescript but usePage have no types by default? Do i need to import types separately? This works, but i get TS errors ```<script setup lang="ts">
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout.vue';
import { Head, usePage } from '@inertiajs/vue3';
const page = usePage();
const name = page.props.auth.user.name;
</script>```