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