import { RouterViewProps } from "./types.js"; //#region src/router/RouterView/RouterView.d.ts /** * Renders the view component selected for the current route depth. * * Nested `RouterView` instances increment the route depth through * `GlobalContext`, allowing child routes to render their own views. * * @param props - View name, optional route transform, and props passed to the rendered view. * @returns The selected view or `null` when no matching view exists. * * @example * ```tsx * * ``` */ declare function RouterView({ name, beforeShow, ...rest }: RouterViewProps): import("react").JSX.Element | null; //#endregion export { RouterView }; //# sourceMappingURL=RouterView.d.ts.map