export declare const ormAdapters: { prisma: { getDialect: typeof import("./prisma/getDialect.js").getDialect; id: "prisma"; name: string; packageName: string; template: (parameters?: string | undefined) => string; patchSeedConfig: typeof import("./prisma/patchSeedConfig.js").patchSeedConfig; patchUserModels: typeof import("./prisma/patchUserModels.js").patchUserModels; }; }; export declare const postgresAdapters: { pg: { getDialect: () => "postgres"; id: "pg"; name: string; packageName: string; typesPackageName: string; template: (parameters?: string | undefined) => string; }; postgres: { getDialect: () => "postgres"; id: "postgres"; name: string; packageName: string; template: (parameters?: string | undefined) => string; }; }; export declare const sqliteAdapters: { "better-sqlite3": { getDialect: () => "sqlite"; id: "better-sqlite3"; name: string; packageName: string; typesPackageName: string; template: (parameters?: string | undefined) => string; }; }; export declare const mysqlAdapters: { mysql2: { getDialect: () => "mysql"; id: "mysql2"; name: string; packageName: string; template: (parameters?: string | undefined) => string; }; }; export declare const adapters: { mysql2: { getDialect: () => "mysql"; id: "mysql2"; name: string; packageName: string; template: (parameters?: string | undefined) => string; }; "better-sqlite3": { getDialect: () => "sqlite"; id: "better-sqlite3"; name: string; packageName: string; typesPackageName: string; template: (parameters?: string | undefined) => string; }; pg: { getDialect: () => "postgres"; id: "pg"; name: string; packageName: string; typesPackageName: string; template: (parameters?: string | undefined) => string; }; postgres: { getDialect: () => "postgres"; id: "postgres"; name: string; packageName: string; template: (parameters?: string | undefined) => string; }; prisma: { getDialect: typeof import("./prisma/getDialect.js").getDialect; id: "prisma"; name: string; packageName: string; template: (parameters?: string | undefined) => string; patchSeedConfig: typeof import("./prisma/patchSeedConfig.js").patchSeedConfig; patchUserModels: typeof import("./prisma/patchUserModels.js").patchUserModels; }; }; export type AdapterId = keyof typeof adapters;