import { Connection } from './lib/connection.types';
import { InMemoryConnection } from './lib/inMemoryConnection';
export * from './lib/baseConnection.types';
export * from './lib/connection.types';
export * from './lib/ifs/types';
export { InMemoryConnection };
export declare function pool(config?: {}): Connection;
export declare function connect(config?: {}): Promise<Connection>;
export declare function useInMemoryDb(): InMemoryConnection;
