/**
 * Route conversion utilities
 * Convert between different route representations (RouteConfig ↔ CachedRouteInfo)
 */
import type { RouteConfig } from '@docusaurus/types';
import type { CachedRouteInfo } from '../types';
/**
 * Convert cached route info back to RouteConfig objects
 * This allows CLI to use the same processing pipeline as postBuild
 * @internal
 */
export declare function cachedRoutesToRouteConfigs(cachedRoutes: readonly CachedRouteInfo[]): RouteConfig[];
//# sourceMappingURL=route-converter.d.ts.map