import { type Reducer } from 'redux'; import type * as T from './types/index.js'; export declare const INITIAL_STATE: T.AddressesState; export declare const getAddressPredictions: (state: T.AddressesState) => T.AddressesState['predictions']; export declare const getAddressPrediction: (state: T.AddressesState) => T.AddressesState['prediction']; /** * Reducer for addresses state. * * @param state - Current redux state. * @param action - Action dispatched. * * @returns New state. */ declare const addressesReducer: Reducer; export default addressesReducer;