import { UpdateSetItemInfo } from '../../UpdateSetItemInfo';
import { SetStep } from './SetStep';
import { Table } from '../../database';
import { Artifacts, BaseStep } from '../BaseStep';
export declare class UpdateStep extends BaseStep {
    private readonly table;
    constructor(prevStep: BaseStep, table: Table);
    getStepStatement(artifacts?: Artifacts): string;
    getStepArtifacts(): Artifacts;
    set(...values: UpdateSetItemInfo[]): SetStep;
}
