import { type Reducer } from 'redux'; import type { ProductsOutfitsState } from '../types/index.js'; export declare const INITIAL_STATE: ProductsOutfitsState; export declare const getError: (state: ProductsOutfitsState) => ProductsOutfitsState['error']; export declare const getIsLoading: (state: ProductsOutfitsState) => ProductsOutfitsState['isLoading']; /** * Reducer for product outfits. * * @param state - Current redux state. * @param action - Action dispatched. * * @returns New state. */ declare const productsOutfitsReducer: Reducer; export default productsOutfitsReducer;