import { type ReactNode } from 'react';
interface ProtectedRouteProps {
    children: ReactNode;
}
export declare const ProtectedRoute: React.FC<ProtectedRouteProps>;
export declare const withProtectedRoute: (Component: React.ComponentType<any>, props?: any) => import("react/jsx-runtime").JSX.Element;
export {};
