export declare type ServiceTopic = { publish: (message: unknown) => void; subscribe: (callback: (message: unknown) => unknown) => string; unsubscribe: (subscriptionId: string) => void; }; export declare type ServiceTopicsAPI = { [topic: string]: ServiceTopic; };