import { GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link Passcode} for the original type. */ export type CreatePasscode = { tenantId?: string; id: string; interactionJti?: string | null; phone?: string | null; email?: string | null; type: string; code: string; consumed?: boolean; tryCount?: number; createdAt?: number; }; export type Passcode = { tenantId: string; id: string; interactionJti: string | null; phone: string | null; email: string | null; type: string; code: string; consumed: boolean; tryCount: number; createdAt: number; }; export type PasscodeKeys = 'tenantId' | 'id' | 'interactionJti' | 'phone' | 'email' | 'type' | 'code' | 'consumed' | 'tryCount' | 'createdAt'; export declare const Passcodes: GeneratedSchema;