import { z } from 'zod'; declare const dbLoggingOptionsSchema: z.ZodEnum<["query", "error", "schema", "warn", "info", "log", "all"]>; type DbLoggingOptions = z.infer; declare class LoggingConfig { enabled: boolean; options: DbLoggingOptions; maxQueryExecutionTime: number; } declare class PostgresSSLConfig { enabled: boolean; ca: string; cert: string; key: string; rejectUnauthorized: boolean; } declare class PostgresConfig { database: string; host: string; password: string; port: number; user: string; schema: string; poolSize: number; connectionTimeoutMs: number; idleTimeoutMs: number; ssl: PostgresSSLConfig; } declare class MysqlConfig { database: string; host: string; password: string; port: number; user: string; poolSize: number; } export declare class SqliteConfig { database: string; poolSize: number; enableWAL: boolean; executeVacuumOnStartup: boolean; } declare const dbTypeSchema: z.ZodEnum<["sqlite", "mariadb", "mysqldb", "postgresdb"]>; type DbType = z.infer; export declare class DatabaseConfig { type: DbType; get isLegacySqlite(): boolean; tablePrefix: string; pingIntervalSeconds: number; logging: LoggingConfig; postgresdb: PostgresConfig; mysqldb: MysqlConfig; sqlite: SqliteConfig; } export {};