import { RedisGroupNotificationConsumer } from './RedisGroupNotificationConsumer';
import { RedisGroupNotificationPublisher } from './RedisGroupNotificationPublisher';
import { RedisNotificationConfig } from './RedisNotificationFactory';
export declare function createGroupNotificationPair<T>(config: RedisNotificationConfig): {
    publisher: RedisGroupNotificationPublisher<T>;
    consumer: RedisGroupNotificationConsumer<T>;
};
