export default function useLoadedData({ loadFn, getDataFromResponseFn, initialLoading, initialData, isCacheEnabled, }: { loadFn: any; getDataFromResponseFn?: ((response: any) => any) | undefined; initialLoading?: boolean | undefined; initialData?: null | undefined; isCacheEnabled?: boolean | undefined; }): { isLoading: boolean; data: null; error: null; loadData: import("lodash").DebouncedFunc<(...params: any[]) => Promise>; setData: import("react").Dispatch>; setIsLoading: import("react").Dispatch>; }; //# sourceMappingURL=useLoadedData.d.ts.map