import { ParameterBase } from './ParameterBase'; import type { ParameterModelParent, PathParameterModel, PathParameterSerializationStyle } from '../types'; /** * @see http://spec.openapis.org/oas/v3.0.3#parameter-object */ export declare class PathParameter extends ParameterBase<'path'> implements PathParameterModel { #private; constructor(parent: ParameterModelParent, name: string); get style(): PathParameterSerializationStyle; set style(value: PathParameterSerializationStyle); get required(): true; } //# sourceMappingURL=PathParameter.d.ts.map