import type * as mariadb from 'mariadb'; import { ForeignKey, Table } from '../../schema/table.js'; import { StatementKind } from '../kind.js'; /** * @see https://mariadb.com/kb/en/alter-table/ */ export declare class AddTableForeignKeysStatement implements mariadb.QueryOptions { readonly table: Table; readonly kind = StatementKind.DATA_DEFINITION; readonly sql: string; constructor(table: Table, foreignKeys?: true | ReadonlyArray); } //# sourceMappingURL=add-table-foreign-keys.d.ts.map