/// import { AccountInfo } from "../../account/AccountInfo.js"; import { LoggerOptions } from "../../config/ClientConfiguration.js"; import { NativeRequest } from "../../request/NativeRequest.js"; import { NativeSignOutRequest } from "../../request/NativeSignOutRequest.js"; import { AuthenticationResult } from "../../response/AuthenticationResult.js"; export interface INativeBrokerPlugin { isBrokerAvailable: boolean; setLogger(loggerOptions: LoggerOptions): void; getAccountById(accountId: string, correlationId: string): Promise; getAllAccounts(clientId: string, correlationId: string): Promise; acquireTokenSilent(request: NativeRequest): Promise; acquireTokenInteractive(request: NativeRequest, windowHandle?: Buffer): Promise; signOut(request: NativeSignOutRequest): Promise; } //# sourceMappingURL=INativeBrokerPlugin.d.ts.map