import { RootState } from '../../rootStateTypes'; import { FeatureInterest } from './featureNotificationViewState'; export declare const getFeatureNotificationView: (state: RootState) => import("./featureNotificationViewState").FeatureNotificationViewState; export declare const getRegisteredInterests: (state: RootState) => FeatureInterest[]; export declare const getRegisteredInterestsByFeature: (state: RootState, feature: string) => FeatureInterest[]; export declare const isFeatureInterestRegistered: (state: RootState, feature: string, additionalInfo: string) => boolean;