import { DashboardLayout } from '@/components/layout/DashboardLayout'; import type { ReactNode } from 'react'; interface ProtectedLayoutRouteProps { children: ReactNode; } export function ProtectedLayoutRoute({ children }: ProtectedLayoutRouteProps) { return {children}; }