type AppComponentPathOptions = { appPath: string; projectRoot: string; }; type PageComponentPathOptions = { pagePath: string; projectRoot: string; }; /** Resolves the source file for the configured App component. */ export declare function resolveAppComponentPath({ appPath, projectRoot }: AppComponentPathOptions): string; /** Resolves the source file for one configured Page component. */ export declare function resolvePageComponentPath({ pagePath, projectRoot }: PageComponentPathOptions): string; /** Creates a portable import for one configured Page component. */ export declare function createPageComponentImportPath(options: PageComponentPathOptions): string; /** Creates an exact normalized module-ID filter while admitting Vite query parameters. */ export declare function createExactModuleIdFilter(moduleId: string): RegExp; /** Converts a file-backed Vite request ID to its normalized physical path for stable comparisons. */ export declare function normalizeModuleId(id: string): string; /** Converts a local file path into Vite's portable file-system import form. */ export declare function toViteFileImportPath(filePath: string): string; export {};