import { ReactNode } from 'react'; /** * Persistent Inertia layout that renders a server-composed layout schema and * exposes the active page (`children`) to the Outlet via context. The same * component instance is reused across navigations that share a layout, so * shell state (open sidebar, scroll position) survives page visits. */ export default function SchemaLayout({ children }: { children: ReactNode; }): import("react").JSX.Element;