export interface MongoCredentialsDTO {
    readonly username: string;
    readonly password: string;
    readonly host: string;
    readonly port: string;
    readonly prefix?: string;
    readonly databaseName: string;
}
export declare class MongoCredentials {
    readonly databaseName: string;
    protected username: string;
    protected password: string;
    protected host: string;
    protected port: string;
    protected prefix: string;
    constructor(creds: MongoCredentialsDTO);
    get connectionUri(): string;
}
