import { EventAction } from '@botonic/core';
import type { DebugEventConfig } from '../types';
export interface FallbackDebugEvent {
    action: EventAction.Fallback;
    user_input: string;
    fallback_out: number;
    fallback_message_id: string;
}
export declare const getFallbackEventConfig: (data: FallbackDebugEvent) => DebugEventConfig;
