import { OfficeGraphInsights as IOfficeGraphInsightsType, Trending as ITrendingInsightType, UsedInsight as IUsedInsightType, SharedInsight as ISharedInsightType, Entity as IEntityType } from "@microsoft/microsoft-graph-types"; import { _GraphQueryableInstance, _GraphQueryableCollection } from "../graphqueryable.js"; import { IGetById } from "../decorators.js"; /** * Represents a insights entity */ export declare class _Insights extends _GraphQueryableInstance { get trending(): ITrendingInsights; get used(): IUsedInsights; get shared(): ISharedInsights; } export interface IInsights extends _Insights { } export declare const Insights: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => IInsights & import("@pnp/odata-commonjs/invokable-binder.js").IInvokable; /** * Describes a Trending Insight instance */ export declare class _TrendingInsight extends _GraphQueryableInstance { get resource(): IResource; } export interface ITrendingInsight extends _TrendingInsight { } export declare const TrendingInsight: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => ITrendingInsight & import("@pnp/odata-commonjs/invokable-binder.js").IInvokable; /** * Describes a collection of Trending Insight objects * */ export declare class _TrendingInsights extends _GraphQueryableCollection { } export interface ITrendingInsights extends _TrendingInsights, IGetById { } export declare const TrendingInsights: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => ITrendingInsights & import("@pnp/odata-commonjs/invokable-binder.js").IInvokable; /** * Describes a Used Insight instance */ export declare class _UsedInsight extends _GraphQueryableInstance { get resource(): IResource; } export interface IUsedInsight extends _UsedInsight { } export declare const UsedInsight: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => IUsedInsight & import("@pnp/odata-commonjs/invokable-binder.js").IInvokable; /** * Describes a collection of Used Insight objects * */ export declare class _UsedInsights extends _GraphQueryableCollection { } export interface IUsedInsights extends _UsedInsights, IGetById { } export declare const UsedInsights: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => IUsedInsights & import("@pnp/odata-commonjs/invokable-binder.js").IInvokable; /** * Describes a Shared Insight instance */ export declare class _SharedInsight extends _GraphQueryableInstance { get resource(): IResource; } export interface ISharedInsight extends _SharedInsight { } export declare const SharedInsight: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => ISharedInsight & import("@pnp/odata-commonjs/invokable-binder.js").IInvokable; /** * Describes a collection of Shared Insight objects * */ export declare class _SharedInsights extends _GraphQueryableCollection { } export interface ISharedInsights extends _SharedInsights, IGetById { } export declare const SharedInsights: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => ISharedInsights & import("@pnp/odata-commonjs/invokable-binder.js").IInvokable; /** * Describes a Resource Entity instance */ export declare class _Resource extends _GraphQueryableInstance { } export interface IResource extends _Resource { } export declare const Resource: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => IResource & import("@pnp/odata-commonjs/invokable-binder.js").IInvokable; //# sourceMappingURL=types.d.ts.map