import { EventAction } from '@botonic/core';
import type { DebugEventConfig } from '../types';
export interface SmartIntentDebugEvent {
    action: EventAction.IntentSmart;
    nlu_intent_smart_title: string;
}
export declare const getSmartIntentEventConfig: (data: SmartIntentDebugEvent) => DebugEventConfig;
