import { Subject } from 'rxjs'; export declare enum PubSubChannels { dataloader = "dataloader" } export declare class PubSubHelper { static publish(channel: string, payload: string | object): Promise; static subscribe(...channels: string[]): Subject; }