import type { ComponentType } from '@farfetch/blackout-client'; import type { UseCommercePagesOptions } from './types/useCommercePages.types.js'; declare const useCommercePages: (options: UseCommercePagesOptions) => { 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 useCommercePages;