import type { UserReturnsResultDenormalized } from '../../entities/index.js'; import type { StoreState } from '../../types/storeState.types.js'; /** * Returns the loading status for the user returns operation. * * @param state - Application state. * * @returns User returns operation Loading status. */ export declare const areUserReturnsLoading: (state: StoreState) => boolean; /** * Returns the user returns error. * * @param state - Application state. * * @returns User returns operation error. */ export declare const getUserReturnsError: (state: StoreState) => import("../../index.js").Nullable; /** * Returns the user returns. * * @param state - Application state. * * @returns User returns. */ export declare const getUserReturns: (state: StoreState) => UserReturnsResultDenormalized | undefined; /** * Returns the fetched status for the user returns operation. * * @param state - Application state. * * @returns User returns fetched status. */ export declare const areUserReturnsFetched: (state: StoreState) => boolean;