import * as z from "zod"; import { IncidentRoleV1, IncidentRoleV1$Outbound } from "./incidentrolev1.js"; import { UserV1, UserV1$Outbound } from "./userv1.js"; export type IncidentRoleAssignmentV1 = { assignee?: UserV1 | undefined; role: IncidentRoleV1; }; /** @internal */ export declare const IncidentRoleAssignmentV1$inboundSchema: z.ZodType; /** @internal */ export type IncidentRoleAssignmentV1$Outbound = { assignee?: UserV1$Outbound | undefined; role: IncidentRoleV1$Outbound; }; /** @internal */ export declare const IncidentRoleAssignmentV1$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 IncidentRoleAssignmentV1$ { /** @deprecated use `IncidentRoleAssignmentV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IncidentRoleAssignmentV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IncidentRoleAssignmentV1$Outbound` instead. */ type Outbound = IncidentRoleAssignmentV1$Outbound; } //# sourceMappingURL=incidentroleassignmentv1.d.ts.map