import { EventAction } from '@botonic/core';
import { DebugEventConfig } from '../types';
export interface BotActionDebugEvent {
action: EventAction.BotAction;
payload: string;
}
export declare const getBotActionEventConfig: (data: BotActionDebugEvent) => DebugEventConfig;