import { RootState } from '../../rootStateTypes'; import { AuthenticationDetails, AuthenticationFeatureType } from './authenticationViewState'; export interface AuthenticationViewSelectorView { authenticationView: Record; version?: number | string; } export declare const getAuthenticationView: (state: RootState) => AuthenticationViewSelectorView;