import React from 'react'; interface ProtectedRouteProps { redirectPath?: string; children?: React.ReactNode; } /** * Protected route component that redirects to login if user is not authenticated */ declare const ProtectedRoute: React.FC; export default ProtectedRoute; //# sourceMappingURL=ProtectedRoute.d.ts.map