import type { StoreState } from '../../types/storeState.types.js'; /** * Returns the loading status for the user attributes operation. * * @param state - Application state. * * @returns User attributes operation Loading status. */ export declare const areUserAttributesLoading: (state: StoreState) => boolean; /** * Returns the user attributes error. * * @param state - Application state. * * @returns User attributes operation error. */ export declare const getUserAttributesError: (state: StoreState) => import("../../index.js").Nullable; /** * Returns the user attributes. * * @param state - Application state. * * @returns User attributes. */ export declare const getUserAttributes: (state: StoreState) => import("../../index.js").Nullable;