import { GuidValue } from "@omnia/fx-models"; export interface GraphApiPlannerPlan { id: string; title: string; owner: GuidValue; buckets: GraphApiPlannerBucket[]; } export interface GraphApiPlannerBucket { id: string; name: string; }