import * as React from "react"; import { RouteProps } from "react-router-dom"; export type ViewFC = React.FC; export declare const View: React.FC; export declare enum ViewMountRule { Always = "Always",// View is mounted from the start of the application and never unmounted WhenActive = "WhenActive",// Views is mounted when activated and unmounted when deactivated WhenHasBeenActive = "WhenHasBeenActive" } export interface ViewProps { name: string; className?: string; children: React.ReactNode; keepMounted?: boolean; mountRule?: ViewMountRule; route?: RouteProps; }