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