import { Routes } from '@angular/router'; import { RouteDataList } from '../data/route-data-types'; import { RouteDataInterface } from '../data/route-data.interface'; /** * Extracts the data of all given #routes (including children) into a flat key-value object. * @param routes * @experimental */ export declare function extractRouteDataFromRouterConfig(routes: Routes): RouteDataList;