// SPDX-License-Identifier: MIT export type AuthConfig = { tenantId: string; clientId: string; }; export type Config = { activeAccountUpn: string | undefined; authMode: string; };