import { z } from 'zod'; import { ApId } from '../../core/common/id-generator'; import { OtpType } from './otp-type'; export type OtpId = ApId; export declare enum OtpState { PENDING = "PENDING", CONFIRMED = "CONFIRMED" } export declare const OtpModel: z.ZodObject<{ type: z.ZodEnum; identityId: z.ZodString; value: z.ZodString; state: z.ZodEnum; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>; export type OtpModel = z.infer; //# sourceMappingURL=otp-model.d.ts.map