import { OidcModelInstancePayload, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link OidcModelInstance} for the original type. */ export type CreateOidcModelInstance = { tenantId?: string; modelName: string; id: string; payload: OidcModelInstancePayload; expiresAt: number; consumedAt?: number | null; }; export type OidcModelInstance = { tenantId: string; modelName: string; id: string; payload: OidcModelInstancePayload; expiresAt: number; consumedAt: number | null; }; export type OidcModelInstanceKeys = 'tenantId' | 'modelName' | 'id' | 'payload' | 'expiresAt' | 'consumedAt'; export declare const OidcModelInstances: GeneratedSchema;