import { EvkCreateServiceBase, EvkHttpService, MessageCrudService, TokenStorageService } from '@evomatik/evk-common'; import { EventoCalendarioModel } from '../model/eventoCalendario.model'; import { Observable } from 'rxjs'; export declare class EventoCreateService extends EvkCreateServiceBase { messageCrudService: MessageCrudService; http: EvkHttpService; tokenStorage: TokenStorageService; readonly api: string; constructor(messageCrudService: MessageCrudService, http: EvkHttpService, tokenStorage: TokenStorageService); evkOnBeforeSave(data: EventoCalendarioModel): Observable; evkOnDoneSave(response: any): void; evkOnErrorSave(error: any): void; }