export declare const typeormConfig: {
    type: string | undefined;
    url: string | undefined;
    username: string | undefined;
    password: string | undefined;
    database: string | undefined;
    migrations: string[];
    entities: (string | undefined)[];
    logging: boolean;
};
