import * as z from "zod"; import { IncidentEditPayloadV2, IncidentEditPayloadV2$Outbound } from "./incidenteditpayloadv2.js"; export type EditRequestBody = { incident: IncidentEditPayloadV2; /** * Should we send Slack channel notifications to inform responders of this update? Note that this won't work if the Slack channel has already been archived. */ notifyIncidentChannel: boolean; }; /** @internal */ export declare const EditRequestBody$inboundSchema: z.ZodType; /** @internal */ export type EditRequestBody$Outbound = { incident: IncidentEditPayloadV2$Outbound; notify_incident_channel: boolean; }; /** @internal */ export declare const EditRequestBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace EditRequestBody$ { /** @deprecated use `EditRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EditRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EditRequestBody$Outbound` instead. */ type Outbound = EditRequestBody$Outbound; } //# sourceMappingURL=editrequestbody.d.ts.map