import { IControllerAction } from './IControllerAction'; import { MethodActions } from './RouteMethodConstants'; export declare class RouteDto { private readonly method; private readonly endpoint; private readonly controller; constructor(method: MethodActions, endpoint: string, controller: IControllerAction); getEndpoint(): string; getController(): IControllerAction; getMethod(): MethodActions; }