import { Observable } from 'rxjs/Observable';
import { LogEntry } from './models/log-entry.model';
import { LogEntryPublisher } from '../pubsub/publishers/logging/log-entry.publisher';
export declare class LogWatcher {
    private logEntryPublisher;
    constructor(logEntryPublisher: LogEntryPublisher);
    watch(): Observable<LogEntry>;
}
