import { SecurityScheme } from '../../../core/models/common/SecurityScheme'; /** * Constructor. * @param {string} schemeName * @class * @extends SecurityScheme * @author eric.wittmann@gmail.com */ export declare class Oas20SecurityScheme extends SecurityScheme { flow: string; authorizationUrl: string; tokenUrl: string; scopes: Oas20Scopes; constructor(schemeName: string); /** * Create the scopes. * @return {Oas20Scopes} */ createScopes(): Oas20Scopes; } import { Oas20Scopes } from './Oas20Scopes';