import { OpenAPIObject, ParameterLocation, ParameterObject } from 'openapi3-ts'; import { Options } from './options'; /** * An operation parameter */ export declare class Parameter { spec: ParameterObject; var: string; varAccess: string; name: string; tsComments: string; required: boolean; in: ParameterLocation; type: string; style?: string; explode?: boolean; parameterOptions: string; constructor(spec: ParameterObject, options: Options, openApi: OpenAPIObject); createParameterOptions(): string; }