import React from 'react';
import { IStoreWithBase } from './context.interface';
/**
 * This component is responsible for rendering all views
 * that are currently active in the app.
 * The views that are specified in the routes are rendered
 */
export declare const AppViews: React.FC<{
    store: IStoreWithBase<any>;
}>;
