import type { StoreState } from '../../types/storeState.types.js'; /** * Returns the loading status for the titles operation. * * @param state - Application state. * * @returns Titles operation Loading status. */ export declare const areUserTitlesLoading: (state: StoreState) => boolean; /** * Returns the titles error. * * @param state - Application state. * * @returns Titles operation error. */ export declare const getUserTitlesError: (state: StoreState) => import("../../index.js").Nullable; /** * Returns the titles entity. * * @param state - Application state. * * @returns Titles entity. */ export declare const getUserTitles: (state: StoreState) => Record | undefined; /** * Returns the specified title from titles entity . * * @param state - Application state. * @param titleId - Title identifier. * * @returns Title details. */ export declare const getUserTitleById: (state: StoreState, titleId: string) => import("@farfetch/blackout-client").Title | undefined;