import React from 'react'; import { AnyAction } from 'redux'; export interface IndexOwnProperties { } export interface IndexStateProperties { stateIndexView: string; } export interface IndexDispatchProperties { } export type IndexProperties = IndexOwnProperties & IndexStateProperties & IndexDispatchProperties; declare const ConnectedIndex: import("react-redux").ConnectedComponent, { context?: React.Context> | undefined; store?: import("redux").Store | undefined; }>; export default ConnectedIndex;