import { OAuthFlowBase, OAuthFlowParent } from './OAuthFlowBase'; import type { OAuthAuthorizationCodeFlowModel } from '../../types'; import type { URLString } from '@fresha/api-tools-core'; export declare class OAuthAuthorizationCodeFlow extends OAuthFlowBase implements OAuthAuthorizationCodeFlowModel { #private; constructor(parent: OAuthFlowParent, authorizationUrl: URLString, tokenUrl: URLString, refreshUrl: URLString); get authorizationUrl(): URLString; set authorizationUrl(value: URLString); get tokenUrl(): URLString; set tokenUrl(value: URLString); } //# sourceMappingURL=OAuthAuthorizationFlow.d.ts.map