///
import { TestMessages, SubscriptionLog } from '../rxjs/types';
export declare const customTestMatchers: jest.ExpectExtendMap;
declare global {
namespace jest {
interface Matchers> {
toBeNotifications(notifications: TestMessages): R;
toBeSubscriptions(subscriptions: SubscriptionLog[]): R;
toHaveEmptySubscriptions(): R;
}
}
}