import type { ComponentType, ContentPageType, QueryContentPage } from '@farfetch/blackout-client'; import type { UseContentPageOptions } from './types/useContentPage.types.js'; declare const useContentPage: (contentPageType: ContentPageType, fetchQuery: QueryContentPage, options?: UseContentPageOptions) => { data: import("@farfetch/blackout-redux").ContentEntity[] | undefined; isLoading: boolean | undefined; isFetched: boolean; error: import("@farfetch/blackout-client").BlackoutError | null | undefined; actions: { fetch: () => Promise; }; }; export default useContentPage;