import { AuthEntity, CreditAmount, GroupMember, PaymentEntity } from './types/Types' declare class Group { // eslint-disable-next-line @typescript-eslint/prefer-readonly private accountid constructor (svid: string) getGroup (): Promise sendCredits (amount: CreditAmount, to: PaymentEntity, reason: string, auth: AuthEntity): Promise doesGroupExist (): Promise getGroupMembers (): Promise hasGroupPermission (user: GroupMember, permission: string): Promise get svid (): string set svid (svid: string) } export default Group