import { z } from 'zod'; export type OneTimeTokenContext = { jitOrganizationIds?: string[]; }; export declare const oneTimeTokenContextGuard: z.ZodObject<{ jitOrganizationIds: z.ZodOptional>; }, "strip", z.ZodTypeAny, { jitOrganizationIds?: string[] | undefined; }, { jitOrganizationIds?: string[] | undefined; }>; export declare enum OneTimeTokenStatus { Active = "active", Consumed = "consumed", Revoked = "revoked", Expired = "expired" } export declare const oneTimeTokenStatusGuard: z.ZodNativeEnum;