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