import * as z from "zod"; export type RetrospectiveIncidentOptionsV2 = { /** * If the incident mode is 'retrospective', pass the URL of the postmortem to attach it to the incident */ postmortemDocumentUrl?: string | undefined; /** * If the incident mode is 'retrospective', pass the ID of a Slack channel in your workspace to attach the incident to an existing channel, rather than creating a new one */ slackChannelId?: string | undefined; }; /** @internal */ export declare const RetrospectiveIncidentOptionsV2$inboundSchema: z.ZodType; /** @internal */ export type RetrospectiveIncidentOptionsV2$Outbound = { postmortem_document_url?: string | undefined; slack_channel_id?: string | undefined; }; /** @internal */ export declare const RetrospectiveIncidentOptionsV2$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 RetrospectiveIncidentOptionsV2$ { /** @deprecated use `RetrospectiveIncidentOptionsV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RetrospectiveIncidentOptionsV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RetrospectiveIncidentOptionsV2$Outbound` instead. */ type Outbound = RetrospectiveIncidentOptionsV2$Outbound; } //# sourceMappingURL=retrospectiveincidentoptionsv2.d.ts.map