import type * as mariadb from 'mariadb'; import type { Schema } from '../../schema.js'; import { StatementKind } from '../kind.js'; export interface DropSchemaStatementConfig { ifExists?: boolean; } /** * @see https://mariadb.com/kb/en/drop-database/ */ export declare class DropSchemaStatement implements mariadb.QueryOptions { readonly schema: Schema; readonly kind = StatementKind.DATA_DEFINITION; readonly sql: string; constructor(schema: Schema, config?: DropSchemaStatementConfig); } //# sourceMappingURL=drop-schema.d.ts.map