import { GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link VerificationStatus} for the original type. */ export type CreateVerificationStatus = { tenantId?: string; id: string; userId: string; createdAt?: number; verifiedIdentifier?: string | null; }; export type VerificationStatus = { tenantId: string; id: string; userId: string; createdAt: number; verifiedIdentifier: string | null; }; export type VerificationStatusKeys = 'tenantId' | 'id' | 'userId' | 'createdAt' | 'verifiedIdentifier'; export declare const VerificationStatuses: GeneratedSchema;