import { ApiHelpers } from "./ApiHelpers"; export declare class MemberApiHelper { api: ApiHelpers; constructor(api: ApiHelpers); get(id: string): Promise; create(member: any): Promise; delete(id: string): Promise; getAll(): Promise; filterByMemberTypeId(memberTypeId: string): Promise; doesExist(id: string): Promise; doesNameExist(name: string): Promise; getByName(name: string): Promise; ensureNameNotExists(name: string): Promise; createDefaultMember(memberName: string, memberTypeId: string, email: string, username: string, password: string): Promise; createMemberWithMemberGroup(memberName: string, memberTypeId: string, email: string, username: string, password: string, memberGroupId: string): Promise; }