import { SecuritySchemaBase, SecuritySchemaParent } from './SecuritySchemaBase'; import type { APIKeySecuritySchemaLocation, APIKeySecuritySchemaModel } from '../types'; export declare class APIKeySecuritySchema extends SecuritySchemaBase implements APIKeySecuritySchemaModel { #private; constructor(parent: SecuritySchemaParent, name: string, location: APIKeySecuritySchemaLocation); get type(): 'apiKey'; get name(): string; set name(value: string); get in(): APIKeySecuritySchemaLocation; set in(value: APIKeySecuritySchemaLocation); } //# sourceMappingURL=APIKeySecuritySchema.d.ts.map