import { UpdateQuery } from "../models/UpdateQuery"; import { Lexeme } from "../models/Lexeme"; export declare class UpdateQueryParser { /** * Parse SQL string to UpdateQuery AST. * @param query SQL string */ static parse(query: string): UpdateQuery; /** * Parse from lexeme array (for internal use and tests) */ static parseFromLexeme(lexemes: Lexeme[], index: number): { value: UpdateQuery; newIndex: number; }; }