import type { DataSource } from "typeorm"; export declare class DataSourceManager { private static _instance; private _dataSource; static getInstance(): DataSourceManager; get dataSource(): DataSource; set dataSource(dataSource: DataSource | undefined); }