import type { Context } from '../../context.js'; import type { DbDialect } from '../../types.js'; export declare const DB_DIALECTS: readonly import("../../types.js").DatabaseAdapterId[]; export interface DbDialectInspection { state: 'resolved' | 'pending' | 'blocked'; dialect?: DbDialect; reason?: string; } export declare function isDbDialect(value: unknown): value is DbDialect; export declare function inspectDbDialect(ctx: Context): DbDialectInspection; export declare function resolveDbDialect(ctx: Context): Promise; //# sourceMappingURL=dialect.d.ts.map