import { SystemError, UserError } from "@microsoft/teamsfx-api"; /** * Failed to get M365 token JSON object after sign in */ export declare class M365TokenJSONNotFoundError extends SystemError { constructor(); } /** * M365 tenant id in token object is not available */ export declare class M365TenantIdNotFoundInTokenError extends SystemError { constructor(); } /** * The M365 tenant id in .env does not match with the one in token signed in */ export declare class M365TenantIdNotMatchError extends UserError { constructor(signedInTenantId: string, dotEnvTenantId: string, clearKeys: string); } //# sourceMappingURL=m365.d.ts.map