import { VisitOptions } from '@inertiajs/core'; import { Ref } from 'vue'; export default function usePrefetch(options?: VisitOptions): { lastUpdatedAt: Ref; isPrefetching: Ref; isPrefetched: Ref; flush: () => void; };