import { FetchStateAndError } from '../../commonStateTypes/common'; import { RootState } from '../../rootStateTypes'; import { NotificationPreferences } from './notificationPreferencesViewState'; export declare const getNotificationPreferencesSaveState: (state: RootState) => FetchStateAndError; export declare const getEffectiveNotificationPreferences: (state: RootState) => NotificationPreferences; export declare const getNotificationLocalOverrides: (state: RootState) => NotificationPreferences; export declare const hasUnsavedNotificationPreferences: (state: RootState) => boolean;