import { GraphQueryable } from "./graphqueryable"; import { Groups } from "./groups"; /** * Root object wrapping v1 functionality for MS Graph * */ export declare class V1 extends GraphQueryable { /** * Creates a new instance of the V1 class * * @param baseUrl The url or Queryable which forms the parent of this fields collection * @param path Optional additional path */ constructor(baseUrl: string | GraphQueryable, path?: string); readonly groups: Groups; }