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