export type RouterName = 'astro' | 'nextjs-app' | 'nextjs-pages' | 'react-router' | 'remix'; type RouterAdapter = { routesPath: string[]; buildTree: (searchParamsMap: SearchParamsMap, routesDir: string) => Tree; }; export declare const DEFAULT_ROUTER: RouterName; export declare function getRouterAdapter(routerName: string): RouterAdapter | null; export declare function getAvailableRouterNames(): RouterName[]; export {};