import { EventPublisher } from './event-publisher.interface';
import { BrokerConfigInterface } from '../subscriber/broker-config.interface';
export declare class EventPublisherService {
    protected readonly publisher: EventPublisher;
    constructor(config: BrokerConfigInterface, eventPublisher?: EventPublisher);
    hasActiveConnection(): Promise<boolean>;
}
