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