/** * ------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. * See License in the project root for license information. * ------------------------------------------------------------------------------------------- */ import { type RequestInformation } from "../requestInformation.js"; import { type AuthenticationProvider } from "./authenticationProvider.js"; /** This authentication provider does not perform any authentication. */ export declare class AnonymousAuthenticationProvider implements AuthenticationProvider { authenticateRequest: (_: RequestInformation, _2?: Record) => Promise; } //# sourceMappingURL=anonymousAuthenticationProvider.d.ts.map