import type * as mariadb from 'mariadb'; import type { Schema } from '../../schema.js'; import { StatementKind } from '../kind.js'; /** * @see https://mariadb.com/kb/en/information-schema-schemata-table/ */ export type SchemaInformation = { SCHEMA_NAME: string; DEFAULT_CHARACTER_SET_NAME: string; DEFAULT_COLLATION_NAME: string; SCHEMA_COMMENT: string; }; /** * @see https://mariadb.com/kb/en/information-schema-schemata-table/ */ export declare class GetSchemaInformationStatement implements mariadb.QueryOptions { readonly schema: Schema; readonly kind = StatementKind.ADMINISTRATIVE; readonly sql: string; constructor(schema: Schema); } //# sourceMappingURL=get-schema-information.d.ts.map