import { WhereStatement } from './WhereStatement'; import { Raw } from './Raw'; import { StringKey, TransformPossibleColumnDefinition } from './ColumnDefinition'; export declare class DeleteStatement extends WhereStatement { protected columnDefs: Raw[]; protected keyspaceDef: Raw; protected columnFamilyDef: Raw; columns>(columns: K[]): this; column>(name: K): this; keyspace(name: string | Raw): this; from(name: string | Raw): this; from(keyspace: string | Raw, name: string | Raw): this; protected validate(): void; protected getParams(): any[]; protected getQuery(): string; build(): Raw; }