import { OnLogin } from './../../shared/onlogin.service'; import { Watcher } from './watcher'; import { Observable } from "rxjs/Observable"; import { PollerFactory } from "./poller-factory.service"; export declare class WatcherFactory { private onLogin; private pollerFactory; constructor(onLogin: OnLogin, pollerFactory: PollerFactory); newInstance(pathFn: () => String, queryParams: any, listFactory: () => Observable): Watcher; }