import type { ProductEntity } from '../../entities/types/index.js'; import type { StoreState } from '../../types/index.js'; /** * Returns the loading status for product outfits of a specific product. * * @param state - Application state. * @param id - Product id. * * @returns If the product outfits are loading or not. */ export declare const areProductOutfitsLoading: (state: StoreState, id: ProductEntity['id']) => boolean | undefined; /** * Returns the fetched status for product outfits of a specific product. * * @param state - Application state. * @param id - Product id. * * @returns If the product outfits have been fetched or not. */ export declare const areProductOutfitsFetched: (state: StoreState, id: ProductEntity['id']) => boolean; /** * Returns the error status for product outfits of a specific product. * * @param state - Application state. * @param id - Product id. * * @returns The outfits error associated to a specific product. */ export declare const getProductOutfitsError: (state: StoreState, id: ProductEntity['id']) => import("@farfetch/blackout-client").BlackoutError | undefined; /** * Returns the loading status for product outfits of a specific product. * * @param state - Application state. * @param id - Product id. * * @returns The outfits information for a given product id. */ export declare const getProductOutfits: (state: StoreState, id: ProductEntity['id']) => import("@farfetch/blackout-client").Outfit[] | undefined;