import { SocketGoalWatcher } from './socket-goal.watcher';
import { SocketInstitutionWatcher } from './socket-institution.watcher';
import { SocketTransactionWatcher } from './socket-transaction.watcher';
import { SocketUserWatcher } from './socket-user.watcher';
export declare class SocketWatcher {
    private socketGoalWatcher;
    private socketInstitutionWatcher;
    private socketTransactionWatcher;
    private socketUserWatcher;
    private isWatching;
    constructor(socketGoalWatcher: SocketGoalWatcher, socketInstitutionWatcher: SocketInstitutionWatcher, socketTransactionWatcher: SocketTransactionWatcher, socketUserWatcher: SocketUserWatcher);
    watch(): void;
}
