import type { Group } from '../models/Group.js'; import type { CancelablePromise } from '../core/CancelablePromise.js'; export declare class AdminGroupService { /** * Create group * Creates the given group identified by name. * @param requestBody * @returns Group returns the new group if group is created successfully * @throws ApiError */ static create(requestBody?: Group): CancelablePromise; /** * Delete group * Deletes the given group identified by name. * @param groupName the group name to be deleted * @returns void * @throws ApiError */ static delete(groupName: string): CancelablePromise; } //# sourceMappingURL=AdminGroupService.d.ts.map