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