import * as z from "zod"; export type IncidentTimestampV1 = { /** * When this last occurred, if it did */ lastOccurredAt?: Date | undefined; /** * Name of the lifecycle event */ name: string; }; /** @internal */ export declare const IncidentTimestampV1$inboundSchema: z.ZodType; /** @internal */ export type IncidentTimestampV1$Outbound = { last_occurred_at?: string | undefined; name: string; }; /** @internal */ export declare const IncidentTimestampV1$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 IncidentTimestampV1$ { /** @deprecated use `IncidentTimestampV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IncidentTimestampV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IncidentTimestampV1$Outbound` instead. */ type Outbound = IncidentTimestampV1$Outbound; } //# sourceMappingURL=incidenttimestampv1.d.ts.map