import { SwaggerDoc } from './swagger-doc'; import { SwaggerBase } from "./swagger-base"; import { SwaggerBasePrivateProps } from "./swagger-base-private-props"; export interface ISwaggerPath { } interface PrivateProps extends SwaggerBasePrivateProps { } export declare class SwaggerPath extends SwaggerBase implements ISwaggerPath { name: string; url: string; tags: string[]; httpMethods: string[]; constructor(parent: SwaggerDoc, key: string, source: any); init(): void; } export {};