import { _GraphCollection, _GraphInstance } from "../graphqueryable.js"; import { OutlookUser as IOutlookType, OutlookCategory as IOutlookCategoryType } from "@microsoft/microsoft-graph-types"; import { IAddable, IDeleteable, IGetById, IUpdateable } from "../decorators.js"; /** * Outlook */ export declare class _Outlook extends _GraphInstance { get masterCategories(): IMasterCategories; } export interface IOutlook extends _Outlook { } export declare const Outlook: import("../graphqueryable.js").IGraphInvokableFactory; /** * Describes an Outlook Category instance */ export declare class _OutlookCategory extends _GraphInstance { } export interface IOutlookCategory extends _OutlookCategory, IUpdateable, IDeleteable { } export declare const OutlookCategory: import("../graphqueryable.js").IGraphInvokableFactory; /** * Categories */ export declare class _MasterCategories extends _GraphCollection { } export interface IMasterCategories extends _MasterCategories, IGetById, IAddable { } export declare const MasterCategories: import("../graphqueryable.js").IGraphInvokableFactory; /** * MasterCategoryAddResult */ export interface IMasterCategoryAddResult { data: IOutlookCategoryType; } //# sourceMappingURL=categories.d.ts.map