import type { ComponentType } from '@farfetch/blackout-client'; import type { UseContentsOptions } from './types/useContents.types.js'; declare function useContents({ enableAutoFetch, fetchConfig, ...queryParams }: UseContentsOptions): { isLoading: boolean | undefined; isFetched: boolean; error: import("@farfetch/blackout-client").BlackoutError | null | undefined; data: { entries: import("@farfetch/blackout-redux").ContentEntity[]; pagination: { pageIndex: number; totalPages: number; totalItems: number; }; } | undefined; actions: { fetch: () => Promise; }; }; export default useContents;