interface FetchState { data: T | null; isLoading: boolean; error: Error | null; isCached: boolean; refetch: () => void; } declare function useFetch(url: string, options?: RequestInit): FetchState; export default useFetch; //# sourceMappingURL=use-fetch.d.ts.map