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