import { ConfigService } from "@nestjs/config";
export declare const getDatabaseConfig: (configService: ConfigService) => {
    type: "postgres";
    host: string;
    port: number;
    username: string;
    password: string;
    database: string;
    entities: string[];
    synchronize: boolean;
    logging: boolean;
    extra: {
        connectionLimit: number;
    };
};
