import { Express } from 'express'; import { Channel, OutgoingResponse } from '../'; import { ChannelResponseContext } from '../channels/Channel'; export interface RasaChannelConfig { app: Express; webhookPath: string; } declare class RasaChannel extends Channel { private config; constructor(config: RasaChannelConfig); protected sendResponseNow(responses: OutgoingResponse[], responseContext: ChannelResponseContext): void; } export default RasaChannel;