import { GraphQueryable, GraphQueryableInstance, GraphQueryableCollection } from "./graphqueryable"; export declare class Members extends GraphQueryableCollection { constructor(baseUrl: string | GraphQueryable, path?: string); /** * Use this API to add a member to an Office 365 group, a security group or a mail-enabled security group through * the members navigation property. You can add users or other groups. * Important: You can add only users to Office 365 groups. * * @param id Full @odata.id of the directoryObject, user, or group object you want to add (ex: https://graph.microsoft.com/v1.0/directoryObjects/${id}) */ add(id: string): Promise; /** * Gets a member of the group by id * * @param id Group member's id */ getById(id: string): Member; } export declare class Member extends GraphQueryableInstance { } export declare class Owners extends Members { constructor(baseUrl: string | GraphQueryable, path?: string); }