export declare type ServicePublisher = (...args: any[]) => any; /** * @access protected */ export declare class Service { readonly contextId?: string; readonly $publish: ServicePublisher; constructor({ $publish }: { $publish: ServicePublisher; }); }