import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type NotificationGroup = { id?: string | undefined; name: string; environmentId: string; organizationId: string; parentId?: string | undefined; }; /** @internal */ export declare const NotificationGroup$inboundSchema: z.ZodType; export declare function notificationGroupFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=notificationgroup.d.ts.map