import { EventAction } from '@botonic/core';
import type { DebugEventConfig } from '../types';
export interface ConditionalChannelDebugEvent {
    action: EventAction.ConditionalChannel;
    channel: string;
}
export declare const getConditionalChannelEventConfig: (data: ConditionalChannelDebugEvent) => DebugEventConfig;
