import { Router } from ".";
import { RouteChain } from "../interface/route-chain";
import { StringObject } from "../../../interface/object";
export declare class RouteChainManger {
    private router;
    private routesNames;
    constructor(router: Router, routesNames: StringObject);
    getChain(path: string): RouteChain;
}
