import { OAuthFlowBase } from './OAuthFlowBase'; import type { OAuthAuthorizationCodeFlowModel, OAuthFlowModelParent } 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 OAuthAuthorisationCodeFlow extends OAuthFlowBase<'authorizationCode'> implements OAuthAuthorizationCodeFlowModel { #private; constructor(parent: OAuthFlowModelParent, authorizationUrl: URLString, tokenUrl: URLString); get authorizationUrl(): URLString; set authorizationUrl(value: URLString); get tokenUrl(): URLString; set tokenUrl(value: URLString); } //# sourceMappingURL=OAuthAuthorisationCodeFlow.d.ts.map