import Command from '../Command'; export default class CreateTable extends Command { constructor(table: string); toSQL(): string; _add(...columns: string[]): this; add(...columns: string[]): this; _ifNotExists(): this; ifNotExists(): this; }