import type { Driver } from "./Driver"; import type { DataSource } from "../data-source/DataSource"; /** * Helps to create drivers. */ export declare class DriverFactory { /** * Creates a new driver depend on a given connection's driver type. */ static create(connection: DataSource): Promise; }