import type { RouteComposerComposeMethod } from '../types/route-composer.types'; import type { RouteArgument } from '../types/route-paths.types'; export declare class RouteComposer { readonly path: FullPath; readonly name: Name; readonly args: RouteArgument[]; readonly hasArgs: boolean; readonly compose: RouteComposerComposeMethod; constructor(path: FullPath, name: Name); private routePathWithArgs; private routePath; }