import { SelectedRoute } from "@pastweb/tools"; //#region src/router/RouterView/types.d.ts interface RouterViewProps { /** Named view to render from `SelectedRoute.views`. Defaults to `default`. */ name?: string; /** Optional transform that can replace the selected route before rendering. */ beforeShow?: (route: SelectedRoute) => SelectedRoute; /** Extra props forwarded to the selected view component. */ [propName: string]: any; } //#endregion export { RouterViewProps }; //# sourceMappingURL=types.d.cts.map