import type { MachinatBot, MachinatChannel, MachinatNode } from '../types'; import type { DispatchResponse } from '../engine/types'; /** * @category Base */ export declare class BasicBot implements MachinatBot { static PlatformMap: import("../service").PolymorphicServiceInterface>; private _platformMapping; constructor(platformMapping: Map>); render(channel: MachinatChannel, node: MachinatNode): Promise>; start(): Promise; stop(): Promise; } declare const BotP: import("../service").ServiceProvider>]> & typeof BasicBot; declare type BotP = BasicBot; export default BotP;