import type { Rule } from 'eslint';
/**
 * Creates ESLint rule visitors for detecting and reporting physical CSS properties
 * in vanilla-extract style objects.
 *
 * - Tracks calls to vanilla-extract APIs (style, recipe, keyframes, globalStyle, fontFace, etc.)
 * - Detects physical property names and directional values
 * - Respects the `allow` option for allowlisting properties
 * - Provides auto-fixes for unambiguous conversions
 *
 * @param context ESLint rule context used to read options and report diagnostics
 * @returns Rule listener that inspects vanilla-extract call expressions and processes style objects
 */
export declare const createLogicalPropertiesVisitors: (context: Rule.RuleContext) => Rule.RuleListener;
