import { EventEmitter } from "events";
interface DbConnectionOptions {
    mongoUri: string;
    maxRetries?: number;
    retryDelay?: number;
}
declare class DatabaseConnection extends EventEmitter {
    private mongoUri;
    private maxRetries;
    private retryDelay;
    private retryCount;
    private isConnected;
    constructor(options: DbConnectionOptions);
    /**
     * Connect to MongoDB with retry capability
     */
    connect(): Promise<boolean>;
    /**
     * Retry connection with exponential backoff
     */
    private retryConnection;
    /**
     * Disconnect from MongoDB
     */
    disconnect(): Promise<void>;
    /**
     * Get connection status
     */
    getStatus(): string;
}
export default DatabaseConnection;
