import { ChatBotActionService, InteractionStatus } from "./chat-bot-action.service"; import { HttpClient } from "@angular/common/http"; export declare class BotActionsCompletedService { private http; private _actionService; apiPath: string; constructor(http: HttpClient, _actionService: ChatBotActionService); postSuccess(x: InteractionStatus): Promise; postCancel(x: InteractionStatus): Promise; private post(x, wasSuccess); }