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