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