import type * as mariadb from 'mariadb'; import type { Schema, SchemaFix } from '../../schema.js'; import { StatementKind } from '../kind.js'; /** * @see https://mariadb.com/kb/en/alter-database/ */ export declare class FixSchemaStatement implements mariadb.QueryOptions { readonly fix: SchemaFix; readonly schema: Schema; readonly kind = StatementKind.DATA_DEFINITION; readonly sql: string; static supports(fix: SchemaFix): boolean; constructor(fix: SchemaFix); } //# sourceMappingURL=fix-schema.d.ts.map