import type { NoopDBSqlBuilder } from "../sqlBuilders/NoopDBSqlBuilder";
import type { QueryRunner } from "../queryRunners/QueryRunner";
import type { NoopDB, TypeSafeDB, TypeUnsafeDB } from "../databases";
import { AbstractAdvancedConnection } from "./AbstractAdvancedConnection";
export declare abstract class AbstractNoopDBConnection<DB extends NoopDB & (TypeUnsafeDB | TypeSafeDB)> extends AbstractAdvancedConnection<DB> {
    constructor(queryRunner: QueryRunner, sqlBuilder: NoopDBSqlBuilder);
    get lastQuery(): string;
    get lastParams(): any[];
}
