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