import { ParamType } from "./utils";
export declare class QueryHelper {
    static compileWithoutParams(query: string, params: ParamType[]): string;
    static splitMultipleCommands(sql: string, params: ParamType[]): Array<{
        sql: string;
        params: ParamType[];
    }>;
    static isMultipleCommands(statement: string): boolean;
    private static getMultipleCommands;
    private static countOccurrence;
    private static formatParamsToInline;
}
