/** * Base Service */ export declare abstract class BaseService { /** * Initialize */ constructor(); /** * Destroy Service */ destroy(): void; }