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