import { EventAction } from '@botonic/core';
import type { DebugEventConfig } from '../types';
export interface ConditionalCustomDebugEvent {
    action: EventAction.ConditionalCustom;
    conditional_variable: string;
    variable_format: string;
}
export declare const getConditionalCustomEventConfig: (data: ConditionalCustomDebugEvent) => DebugEventConfig;
