import Command from '../Command'; export default class Delete extends Command { constructor(table: string); toSQL(): string; _where(sql: string, ...args: any[]): this; where(sql: string, ...args: any[]): this; _whereEqual(hash: { [index: string]: any; }): this; /** Just like Select._whereEqual, be careful with the keys. */ whereEqual(hash: { [index: string]: any; }): this; }