import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { GroupEntityType } from "./group-entity-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; export type GroupGroup = { createdAt?: Date | undefined; createdBy?: string | undefined; entityType?: GroupEntityType | undefined; environmentId?: string | undefined; id?: string | undefined; lookupKey?: string | undefined; metadata?: { [k: string]: string; } | undefined; name?: string | undefined; status?: Status | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const GroupGroup$inboundSchema: z.ZodMiniType; export declare function groupGroupFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=group-group.d.ts.map