import type { ModuleRegistry } from '../runtime/registry.js'; import type { ResolvedPage } from '../types.js'; /** * Resolve a page component from the registry for a given path. * Returns the page registration along with extracted dynamic params. * * Usage in host's src/app/dashboard/[...path]/page.tsx: * * const page = resolveModulePage(registry, path) * if (!page) return notFound() * const Component = page.component * return */ export declare function resolveModulePage(registry: ModuleRegistry, path: string[]): ResolvedPage | null; //# sourceMappingURL=page-handler.d.ts.map