import { Route } from '../../types'; export declare class AutoRouter { private appDir; private routes; constructor(appDir: string); scanRoutes(): Promise; private fileToRoute; private extractParams; private generateTitle; findRouteByPath(path: string): Route | null; private matchesDynamicRoute; extractParamsFromPath(route: Route, actualPath: string): { [key: string]: string; }; getRoutes(): Route[]; }