import type { ProductEntity } from '../../entities/types/index.js'; import type { StoreState } from '../../types/index.js'; /** * Returns the loading product attributes condition to a specific product. * * @param state - Application state. * @param id - Product id. * * @returns If the product attributes are loading or not. */ export declare const areProductAttributesLoading: (state: StoreState, id: ProductEntity['id']) => boolean | undefined; /** * Returns the fetched status of a specific product attributes. * * @param state - Application state. * @param id - Product id. * * @returns If the product attributes has been fetched or not. */ export declare const areProductAttributesFetched: (state: StoreState, id: ProductEntity['id']) => boolean; /** * Returns the error attributes condition to a specific product. * * @param state - Application state. * @param id - Product id. * * @returns The attributes error associated to a specific product. */ export declare const getProductAttributesError: (state: StoreState, id: ProductEntity['id']) => import("@farfetch/blackout-client").BlackoutError | undefined; /** * Returns the attributes for a given product id. * * @param state - Application state. * @param id - Product id. * * @returns The attributes for a given product id. */ export declare const getProductAttributes: (state: StoreState, id: ProductEntity['id']) => import("@farfetch/blackout-client").ProductAttribute[] | undefined;