export declare const MysqlStorageType: { readonly Standard: "standard"; readonly Io1: "io1"; readonly Gp2: "gp2"; }; /** * Set of storage type classes for database instance */ export type MysqlStorageType = (typeof MysqlStorageType)[keyof typeof MysqlStorageType]; export declare const MysqlVersion: { readonly V8_0: "8.0"; readonly V5_7: "5.7"; }; /** * Set of allowed versions for the database instance */ export type MysqlVersion = (typeof MysqlVersion)[keyof typeof MysqlVersion];