import { Mapping } from './mapping'; import { RequestMappingOptions } from './request_mapping_options'; export declare class MappingModel implements Mapping { private url; private controller; private method; private options; constructor(url: string, controller: string, method: string, options: RequestMappingOptions); getUrl(): string; getController(): string; getMethod(): string; getOptions(): RequestMappingOptions; }