import type { StoreState } from '../../types/storeState.types.js'; /** * Returns the loading status of the personal ids area. * * @param state - Application state. * * @returns Loader status. */ export declare const areUserPersonalIdsLoading: (state: StoreState) => boolean; /** * Returns the error of the personal ids area. * * @param state - Application state. * * @returns Personal Ids operation error. */ export declare const getUserPersonalIdsError: (state: StoreState) => import("../../index.js").Nullable; /** * Returns the result of the personal ids area. * * @param state - Application state. * * @returns Array containing the loaded personal ids. */ export declare const getUserPersonalIdsResult: (state: StoreState) => import("../../index.js").Nullable; /** * @param state - Application state. * * @returns Loader status. */ export declare const isUserDefaultPersonalIdLoading: (state: StoreState) => boolean; /** * @param state - Application state. * * @returns Error details. */ export declare const getUserDefaultPersonalIdError: (state: StoreState) => import("../../index.js").Nullable; /** * @param state - Application state. * * @returns Address details result. */ export declare const getUserDefaultPersonalIdResult: (state: StoreState) => import("../../index.js").Nullable;