import * as z from "zod"; export type UserReferencePayloadV1 = { /** * The user's email address, matching the email on their Slack account */ email?: string | undefined; /** * The incident.io ID of a user */ id?: string | undefined; /** * The ID of the user's Slack account. */ slackUserId?: string | undefined; }; /** @internal */ export declare const UserReferencePayloadV1$inboundSchema: z.ZodType; /** @internal */ export type UserReferencePayloadV1$Outbound = { email?: string | undefined; id?: string | undefined; slack_user_id?: string | undefined; }; /** @internal */ export declare const UserReferencePayloadV1$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 UserReferencePayloadV1$ { /** @deprecated use `UserReferencePayloadV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UserReferencePayloadV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UserReferencePayloadV1$Outbound` instead. */ type Outbound = UserReferencePayloadV1$Outbound; } //# sourceMappingURL=userreferencepayloadv1.d.ts.map