import { type prefetchOptions } from '../prefetch'; type refetchParams = any; type prefetchReturnType = [ Promise, (refetchParams?: refetchParams) => void ]; type UsePrefetchOptions = prefetchOptions & { deferId?: string; }; export declare const usePrefetch: (options: UsePrefetchOptions) => prefetchReturnType; export {};