export interface M365AppDefinition { manifestId: string; name: string; titleId: string; version: string; scope: string; owners: M365AppEntity[]; } export interface M365AppEntity { entityId: string; entityType: M365EntityType; } export declare enum M365EntityType { User = "User", Group = "Group" } //# sourceMappingURL=interface.d.ts.map