import { ApiHelpers } from "./ApiHelpers"; export declare class MemberGroupApiHelper { api: ApiHelpers; constructor(api: ApiHelpers); get(id: string): Promise; create(name: string, id?: string): Promise; rename(id: string, name: string): Promise; delete(id: string): Promise; getAll(): Promise; doesExist(id: string): Promise; doesNameExist(name: string): Promise; getByName(name: string): Promise; ensureNameNotExists(name: string): Promise; }