export declare enum GraphApiPlannerTaskProgress { NotStarted = 0, InProgress = 1, Completed = 2 } export interface GraphApiPlannerTask { id: string; planId: string; title: string; progress: GraphApiPlannerTaskProgress; assignments: { [userId: string]: unknown; }; unauthorized: boolean; deleted: boolean; unexpectedError: boolean; unexpectedErrorMessage: string; }