import { CaptchaConfig, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link CaptchaProvider} for the original type. */ export type CreateCaptchaProvider = { tenantId?: string; id: string; config?: CaptchaConfig; createdAt?: number; updatedAt?: number; }; export type CaptchaProvider = { tenantId: string; id: string; config: CaptchaConfig; createdAt: number; updatedAt: number; }; export type CaptchaProviderKeys = 'tenantId' | 'id' | 'config' | 'createdAt' | 'updatedAt'; export declare const CaptchaProviders: GeneratedSchema;