import { EventAction } from '@botonic/core';
import type { DebugEventConfig } from '../types';
export interface RedirectFlowDebugEvent {
    action: EventAction.RedirectFlow;
    flow_id: string;
    flow_name: string;
    flow_target_id: string;
    flow_target_name: string;
}
export declare const getRedirectFlowEventConfig: (data: RedirectFlowDebugEvent) => DebugEventConfig;
