import { _GraphQueryableCollection, _GraphQueryableInstance } from "../graphqueryable.js"; import { Site as ISiteType } from "@microsoft/microsoft-graph-types"; /** * Sites */ export declare class _Sites extends _GraphQueryableCollection { /** * Gets the team site for the group */ get root(): ISite; } export interface ISites extends _Sites { } export declare const Sites: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => ISites & import("@pnp/odata-commonjs/invokable-binder.js").IInvokable; /** * Site */ export declare class _Site extends _GraphQueryableInstance { get sites(): ISites; } export interface ISite extends _Site { } export declare const Site: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => ISite & import("@pnp/odata-commonjs/invokable-binder.js").IInvokable; //# sourceMappingURL=types.d.ts.map