import React from 'react';
export interface IndexOwnProperties {
}
export interface IndexStateProperties {
    stateIndexView: string;
}
export interface IndexDispatchProperties {
}
export declare type IndexProperties = IndexOwnProperties & IndexStateProperties & IndexDispatchProperties;
declare const ConnectedIndex: import("react-redux").ConnectedComponent<React.FC<IndexProperties>, Omit<IndexProperties, "stateIndexView"> & import("react-redux").ConnectProps>;
export default ConnectedIndex;
