import http = require("http");
import https = require("https");
import { TokenCredential } from "@azure/core-auth";
declare class AuthorizationHandler {
    private _azureTokenPolicy;
    constructor(credential: TokenCredential, aadAudience?: string);
    /**
    * Applies the Bearer token to the request through the Authorization header.
    */
    addAuthorizationHeader(requestOptions: http.RequestOptions | https.RequestOptions): Promise<void>;
}
export = AuthorizationHandler;
