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