import { ControllerType } from "../decorators/controller-type";
import { ActionType } from "../decorators/action-type";
export declare class RoutingContext {
    readonly controllerType: ControllerType;
    readonly actionType: ActionType;
    constructor(controllerType: ControllerType, actionType: ActionType);
    toString(): string;
}
