import { EventAction } from '@botonic/core';
import type { DebugEventConfig } from '../types';
export interface KeywordDebugEvent {
    action: EventAction.Keyword;
    flow_id: string;
    flow_node_id: string;
    nlu_keyword_is_regex: boolean;
    nlu_keyword_name: string;
}
export declare const getKeywordEventConfig: (data: KeywordDebugEvent) => DebugEventConfig;
