import { Json, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link LogtoConfig} for the original type. */ export type CreateLogtoConfig = { tenantId?: string; key: string; value?: Json; }; export type LogtoConfig = { tenantId: string; key: string; value: Json; }; export type LogtoConfigKeys = 'tenantId' | 'key' | 'value'; export declare const LogtoConfigs: GeneratedSchema;