import type { UseTopCategoriesOptions } from './types/useTopCategories.js'; declare const useTopCategories: (options?: UseTopCategoriesOptions) => { isLoading: boolean; error: import("@farfetch/blackout-client").BlackoutError | null; isFetched: boolean; data: import("@farfetch/blackout-redux").CategoryEntity[]; actions: { fetch: (config?: import("@farfetch/blackout-client").Config | undefined) => Promise; reset: () => void; }; }; export default useTopCategories;