import { OpenAPIObject, SecuritySchemeObject } from 'openapi3-ts'; import { OaImport } from './oa-import.js'; import { Options } from './options.js'; export declare class OaSecurity { spec: SecuritySchemeObject; scope: string[]; /** Variable name */ var: string; /** Header name */ name: string; tsComments: string; /** Location of security parameter */ in: string; type: string; constructor(key: string, spec: SecuritySchemeObject, scope?: string[]); updateProperties(openApi: OpenAPIObject, options: Options, imports: Map): void; }