import { EventAction } from '@botonic/core';
import type { DebugEventConfig } from '../types';
export interface ConditionalCountryDebugEvent {
    action: EventAction.ConditionalCountry;
    country: string;
}
export declare const getConditionalCountryEventConfig: (data: ConditionalCountryDebugEvent) => DebugEventConfig;
