import { type ProductEntity } from '@farfetch/blackout-redux'; import type { UseProductAttributesOptions } from './types/index.js'; declare const useProductAttributes: (productId: ProductEntity['id'], options?: UseProductAttributesOptions) => { error: import("@farfetch/blackout-client").BlackoutError | undefined; isFetched: boolean; isLoading: boolean | undefined; data: import("@farfetch/blackout-client").ProductAttribute[] | undefined; actions: { refetch: () => Promise; }; }; export default useProductAttributes;