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