import * as z from "zod/v3"; /** * Describes the request body of the /deletegroup API call */ export type DeleteGroupRequest = { /** * Version number for document for optimistic concurrency control. If absent or 0 then no version checks are done. */ version?: number | undefined; /** * The datasource for which the group is removed */ datasource: string; /** * the name of the group to be deleted */ groupName: string; }; /** @internal */ export type DeleteGroupRequest$Outbound = { version?: number | undefined; datasource: string; groupName: string; }; /** @internal */ export declare const DeleteGroupRequest$outboundSchema: z.ZodType; export declare function deleteGroupRequestToJSON(deleteGroupRequest: DeleteGroupRequest): string; //# sourceMappingURL=deletegrouprequest.d.ts.map