import * as z from "zod/v3"; import { DatasourceGroupDefinition, DatasourceGroupDefinition$Outbound } from "./datasourcegroupdefinition.js"; /** * Describes the request body of the /indexgroup API call */ export type IndexGroupRequest = { /** * 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 added */ datasource: string; /** * describes a group in the datasource */ group: DatasourceGroupDefinition; }; /** @internal */ export type IndexGroupRequest$Outbound = { version?: number | undefined; datasource: string; group: DatasourceGroupDefinition$Outbound; }; /** @internal */ export declare const IndexGroupRequest$outboundSchema: z.ZodType; export declare function indexGroupRequestToJSON(indexGroupRequest: IndexGroupRequest): string; //# sourceMappingURL=indexgrouprequest.d.ts.map