import { OAuthFlowBase } from './OAuthFlowBase'; import type { OAuthFlowModelParent, OAuthImplicitFlowModel } from '../types'; import type { URLString } from '@fresha/api-tools-core'; /** * @see http://spec.openapis.org/oas/v3.0.3#oauth-flow-object */ export declare class OAuthImplicitFlow extends OAuthFlowBase<'implicit'> implements OAuthImplicitFlowModel { #private; constructor(parent: OAuthFlowModelParent, authorizationUrl: string); get authorizationUrl(): URLString; set authorizationUrl(value: URLString); } //# sourceMappingURL=OAuthImplicitFlow.d.ts.map