import { Transform, Router, RouteChildren } from './types'; declare type NodeOptions = { path?: string; children?: RouteChildren; transform?: { [key: string]: Transform; }; scope?: string; }; declare function route(routeOrOpts: string | NodeOptions, childrenOrOpts?: NodeOptions | RouteChildren | null, children?: Router | RouteChildren): Router; declare namespace route { var scope: (scopeName: string, ...rest: any[]) => Router; var intents: (base: any) => Router; } export default route; //# sourceMappingURL=route.d.ts.map