/** * Copyright 2025 The Artinet Project * SPDX-License-Identifier: Apache-2.0 */ import { z } from "zod/v4"; /** * Schema for agent group configuration. * * Groups bundle multiple agents together for orchestrated communication. */ export declare const GroupSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodString; access: z.ZodDefault>; members: z.ZodArray; ownerId: z.ZodString; created: z.ZodISODateTime; updated: z.ZodISODateTime; metadata: z.ZodOptional>; }, z.core.$strip>; /** Type alias for validated Group */ export type Group = z.output; export declare const isGroup: (value: unknown) => value is Group; //# sourceMappingURL=group.d.ts.map