import { ConditionalRule } from '../types';

/**
 * Smart transformation of JSON Rules Engine rules to internal format
 *
 * Handles show/hide pairs intelligently by converting them to single remove rules
 * Also handles rules that are already in internal format
 */
export declare function smartTransformJsonRulesEngine(rules: any[]): ConditionalRule[];
export { smartTransformJsonRulesEngine as transformJsonRulesEngine };
