import type { ResolvedUserPreferences } from './user-preferences'; import type { UserPreferencesProvider } from './user-preferences-provider'; /** * This hook returns the latest user preference * @param {UserPreferencesProvider} userPreferencesProvider an instance of UserPreferencesProvider * @example const { resolvedUserPreferences } = edUserPreferences(userPreferencesProvider) * @returns {ResolvedUserPreferences | null} the latest user preference */ export declare function useResolvedUserPreferences(userPreferencesProvider?: UserPreferencesProvider): { resolvedUserPreferences: ResolvedUserPreferences | null; };