import { AbstractBase } from './abstract.base'; import { AbstractOperations } from './abstract.operations'; import { ChannelName, MessageFunction } from '../../bus.api'; import { GeneralError } from '../model/error.model'; export declare abstract class AbstractOpsComponent extends AbstractBase implements AbstractOperations { callService: (channel: ChannelName, request: RequestType, successHandler: MessageFunction, errorHandler?: MessageFunction) => void; }