import { type Reducer } from 'redux'; import type { AccountSettingState } from '../types/index.js'; export declare const INITIAL_STATE: AccountSettingState; declare const accountSettingReducer: Reducer; export declare const getError: (state: AccountSettingState) => Record | null; export declare const getIsLoading: (state: AccountSettingState) => Record; export declare const getResult: (state: AccountSettingState) => Record | null; export default accountSettingReducer;