import type { DbProvisioner } from './provisioner.js'; /** * Keep this CLI-owned floor synchronized with * `packages/db-mysql/src/lib/boot-check.ts`. The CLI cannot import the adapter * because it verifies the server before installing host dependencies. */ export declare const MYSQL_MINIMUM_VERSION: { readonly major: 8; readonly minor: 0; readonly patch: 14; }; export declare const mysqlProvisioner: DbProvisioner; export declare function assertSupportedMySqlVersion(reported: unknown): asserts reported is string; export declare function mysqlAccountSql(user: string): string; export declare function mysqlProvisionStatements(args: { database: string; user: string; password: string; createDatabase: boolean; }): string[]; //# sourceMappingURL=mysql.d.ts.map