import { Subscription } from 'rxjs/internal/Subscription'; export declare class AOSubscriptions { /** * @return any */ constructor(); readonly add: (name: string, subscription: Subscription) => this; readonly stop: (names?: string[]) => this; }