import { OAuthFlows } from '../OAuthFlow'; import { SecuritySchemeBase } from './SecuritySchemeBase'; import type { OAuth2SecuritySchemaModel, SecuritySchemaModelParent } from '../types'; /** * @see http://spec.openapis.org/oas/v3.0.3#security-scheme-object */ export declare class OAuth2SecurityScheme extends SecuritySchemeBase<'oauth2'> implements OAuth2SecuritySchemaModel { #private; constructor(parent: SecuritySchemaModelParent); get flows(): OAuthFlows; } //# sourceMappingURL=OAuth2SecurityScheme.d.ts.map