import * as z from "zod"; import { UserV1, UserV1$Outbound } from "./userv1.js"; export type IncidentMembership = { /** * When the membership was created */ createdAt: Date; /** * Unique identifier of this incident membership */ id: string; /** * Unique identifier of the incident */ incidentId: string; /** * When the membership was last updated */ updatedAt: Date; user: UserV1; }; /** @internal */ export declare const IncidentMembership$inboundSchema: z.ZodType; /** @internal */ export type IncidentMembership$Outbound = { created_at: string; id: string; incident_id: string; updated_at: string; user: UserV1$Outbound; }; /** @internal */ export declare const IncidentMembership$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 IncidentMembership$ { /** @deprecated use `IncidentMembership$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IncidentMembership$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IncidentMembership$Outbound` instead. */ type Outbound = IncidentMembership$Outbound; } //# sourceMappingURL=incidentmembership.d.ts.map