export declare enum DATABASE_TYPE {
    MySQL = "MySQL",
    PostgreSQL = "PostgreSQL",
    SQLite = "SQLite"
}
export declare const database: {
    type: string;
    dialect: string;
    client: string;
    name: string | undefined;
    host: string | undefined;
    port: number | undefined;
    user: string | undefined;
    password: string | undefined;
};
