import React from 'react';
import { FormComponentProps } from '@tomino/dynamic-form';
import { RouteProps } from '../../react-router/react_router_view';
export declare type PrivateRouteProps = RouteProps & {
    disable: boolean;
};
export declare const LoggedInView: (props: FormComponentProps<PrivateRouteProps, any, any> & {
    result: any;
    routerProps: any;
}) => JSX.Element;
export declare const PrivateReactRouterRoute: React.FC<FormComponentProps<PrivateRouteProps>>;
