export declare function adapterHandler(): Promise<{ getDialect: () => "sqlite"; id: "better-sqlite3"; name: string; packageName: string; typesPackageName: string; template: (parameters?: string | undefined) => string; } | { getDialect: () => "mysql"; id: "mysql2"; name: string; packageName: string; template: (parameters?: string | undefined) => string; } | { getDialect: () => "postgres"; id: "pg"; name: string; packageName: string; typesPackageName: string; template: (parameters?: string | undefined) => string; } | { getDialect: () => "postgres"; id: "postgres"; name: string; packageName: string; template: (parameters?: string | undefined) => string; } | { getDialect: typeof import("../../../adapters/prisma/getDialect.js").getDialect; id: "prisma"; name: string; packageName: string; template: (parameters?: string | undefined) => string; patchSeedConfig: typeof import("../../../adapters/prisma/patchSeedConfig.js").patchSeedConfig; patchUserModels: typeof import("../../../adapters/prisma/patchUserModels.js").patchUserModels; }>;