import type { Category } from '@farfetch/blackout-client'; import type { UseCategoryOptions } from './types/useCategory.js'; declare const useCategory: (categoryId: Category['id'], options?: UseCategoryOptions) => { isLoading: boolean | undefined; error: import("@farfetch/blackout-client").BlackoutError | null | undefined; isFetched: boolean; data: import("@farfetch/blackout-redux").CategoryEntity | undefined; actions: { fetch: () => Promise; }; }; export default useCategory;