import { Observable } from "rxjs"; import { ExpectHelpers, TestObservableLike } from "./types"; export declare class Expect { private actual; private helpers; private subscription?; constructor(actual: Observable, helpers: ExpectHelpers, subscription?: string | undefined); toBeObservable(expected: TestObservableLike): void; toBeObservable(expected: string, values?: { [key: string]: T; }, error?: any): void; toHaveSubscriptions(expected: string | string[]): void; }