/** * Hook to prefetch settings page data on hover * * @example * ```tsx * function SettingsSidebar() { * const { prefetchProfile, prefetchTeams } = usePrefetchSettings() * * return ( * * ) * } * ``` */ export declare function usePrefetchSettings(): { prefetchProfile: () => void; prefetchTeams: () => void; }; /** * Generic prefetch hook for any entity list * * @example * ```tsx * function EntityNav() { * const prefetchProducts = usePrefetchEntity('products') * * return ( * * Products * * ) * } * ``` */ export declare function usePrefetchEntity(entitySlug: string): () => void; //# sourceMappingURL=usePrefetch.d.ts.map