import { Route } from '../../types/route.js'; interface ComponentsMap { [key: string]: string; } declare function scanForComponents(path: string): string[]; declare function scanRouteComponents(route: Route, modules: { name: string; path: string; }[], themePath?: string | null): ComponentsMap; export { scanForComponents, scanRouteComponents }; export type { ComponentsMap };