import * as z from "zod"; export type IncidentTimestampV2 = { /** * Unique ID of this incident timestamp */ id: string; /** * Unique name of this timestamp */ name: string; /** * Order in which this timestamp should be shown */ rank: number; }; /** @internal */ export declare const IncidentTimestampV2$inboundSchema: z.ZodType; /** @internal */ export type IncidentTimestampV2$Outbound = { id: string; name: string; rank: number; }; /** @internal */ export declare const IncidentTimestampV2$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 IncidentTimestampV2$ { /** @deprecated use `IncidentTimestampV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IncidentTimestampV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IncidentTimestampV2$Outbound` instead. */ type Outbound = IncidentTimestampV2$Outbound; } //# sourceMappingURL=incidenttimestampv2.d.ts.map