import React from "react";
interface PrivateRouteProps {
    authenticated: boolean;
}
export declare const PrivateRoute: ({ children, authenticated }: React.PropsWithChildren<PrivateRouteProps>) => JSX.Element;
export {};
