import type { StoreState } from '../../types/storeState.types.js'; /** * Returns the loading status for the contacts operation. * * @param state - Application state. * * @returns Contacts operation Loading status. */ export declare const areUserContactsLoading: (state: StoreState) => boolean; /** * Returns the contacts error. * * @param state - Application state. * * @returns Contacts operation error. */ export declare const getUserContactsError: (state: StoreState) => import("../../index.js").Nullable; /** * Returns the contacts entity. * * @param state - Application state. * * @returns Contacts entity. */ export declare const getUserContacts: (state: StoreState) => Record | undefined; /** * Returns the fetched status of the user contacts area. * * @param state - Application state. * * @returns Loader status. */ export declare const areUserContactsFetched: (state: StoreState) => boolean;