import 'dotenv/config';
import { DataSource } from 'typeorm';
export declare const masterDbConfig: {
    type: "mysql";
    host: string;
    port: number;
    username: string;
    password: string;
    database: string;
    synchronize: boolean;
    logging: boolean;
    entities: string[];
    migrations: string[];
};
export declare const AppDataSource: DataSource;
