import { Component } from './component'; /** * A service represent a component that is responsibility is to orchestrate * logic across domain objects. * When contextScan is set to true, classes extending this class will be * automatically discovered and injected on the application context. * * @typedef Service * @public */ export declare class Service extends Component { getTypeName(): string; }