import type { CancelablePromise } from '../core/CancelablePromise.js'; export declare class UserGroupService { /** * Update user group * Add the given User identified by username to the given Group identified by groupName. * * This method is idempotent i.e., if the membership already exists then no action will be taken. * @param groupName The group name identifying the given group. * @param username The username identifying the given user. * @returns void * @throws ApiError */ static update5(groupName: string, username: string): CancelablePromise; /** * Delete user group * Removes the given User identified by username from the given Group identified by groupName. * * This method is idempotent i.e., if the membership already exists then no action will be taken. * @param groupName The group name identifying the given group. * @param username The username identifying the given user. * @returns void * @throws ApiError */ static delete6(groupName: string, username: string): CancelablePromise; } //# sourceMappingURL=UserGroupService.d.ts.map