/**
 * Copyright (c) "Neo4j"
 * Neo4j Sweden AB [https://neo4j.com]
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
*/
import { Bookmarks } from './internal/bookmarks';
import { AccessMode, TelemetryApis } from './internal/constants';
import { ResultStreamObserver } from './internal/observers';
import { ProtocolVersion } from './protocol-version';
import { TxConfig } from './internal/tx-config';
import NotificationFilter from './notification-filter';
interface ApiTelemetryConfig<Apis extends TelemetryApis = TelemetryApis> {
    api: Apis;
    onTelemetrySuccess?: () => void;
}
interface HasApiTelemetry {
    apiTelemetryConfig?: ApiTelemetryConfig;
}
interface HasBeforeErrorAndAfterComplete {
    beforeError?: (error: Error) => void;
    afterComplete?: (metadata: unknown) => void;
}
interface BeginTransactionConfig extends HasBeforeErrorAndAfterComplete, HasApiTelemetry {
    bookmarks: Bookmarks;
    txConfig: TxConfig;
    mode?: AccessMode;
    database?: string;
    impersonatedUser?: string;
    notificationFilter?: NotificationFilter;
}
interface CommitTransactionConfig extends HasBeforeErrorAndAfterComplete {
}
interface RollbackConnectionConfig extends HasBeforeErrorAndAfterComplete {
}
interface RunQueryConfig extends BeginTransactionConfig {
    fetchSize: number;
    highRecordWatermark: number;
    lowRecordWatermark: number;
    reactive: boolean;
    onDb?: (database: string) => void;
}
/**
 * Interface which defines a connection for the core driver object.
 *
 *
 * This connection exposes only methods used by the code module.
 * Methods with connection implementation details can be defined and used
 * by the implementation layer.
 *
 * @private
 * @interface
 */
declare class Connection {
    /**
     *
     * @param config
     * @returns {ResultStreamObserver}
     */
    beginTransaction(config: BeginTransactionConfig): ResultStreamObserver;
    /**
     *
     * @param query
     * @param parameters
     * @param config
     * @returns {ResultStreamObserver}
     */
    run(query: string, parameters?: Record<string, unknown>, config?: RunQueryConfig): ResultStreamObserver;
    /**
     *
     * @param config
     * @returns {ResultStreamObserver}
     */
    commitTransaction(config: CommitTransactionConfig): ResultStreamObserver;
    /**
     *
     * @param config
     * @returns {ResultStreamObserver}
     */
    rollbackTransaction(config: RollbackConnectionConfig): ResultStreamObserver;
    /**
     *
     * @returns {Promise<void>}
     */
    resetAndFlush(): Promise<void>;
    /**
     *
     * @returns {boolean}
     */
    isOpen(): boolean;
    /**
     *
     * @returns {number}
     */
    getProtocolVersion(): ProtocolVersion;
    /**
     *
     * @returns {boolean}
     */
    hasOngoingObservableRequests(): boolean;
}
export default Connection;
export type { BeginTransactionConfig, CommitTransactionConfig, RollbackConnectionConfig, RunQueryConfig, ApiTelemetryConfig };
