import React from 'react'; import { IClientRoute, IRoutesById } from './types'; export declare function createClientRoutes(opts: { routesById: IRoutesById; routeComponents: Record; parentId?: string; loadingComponent?: React.ReactNode; reactRouter5Compat?: boolean; useStream?: boolean; }): IClientRoute[];