import { Presence as IUserPresence } from "@microsoft/microsoft-graph-types"; import { _GraphQueryableCollection, _GraphQueryableInstance } from "../graphqueryable.js"; /** * Presence */ export declare class _Presence extends _GraphQueryableInstance { } export interface IPresence extends _Presence { } export declare const Presence: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => IPresence & import("@pnp/odata-commonjs").IInvokable; export declare class _Communications extends _GraphQueryableCollection { /** * Retrieve presence information for a group of users. * * @param ids An array of user id's to retrieve presence for. */ getPresencesByUserId(ids: string[]): Promise; } export interface ICommunications extends _Communications { } export declare const Communications: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => ICommunications & import("@pnp/odata-commonjs").IInvokable; //# sourceMappingURL=types.d.ts.map