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