import type { Rule } from 'eslint'; import { TSESTree } from '@typescript-eslint/utils'; export interface LogicalPropertiesOptions { allow?: string[]; } /** * Recursively processes a vanilla-extract style object and reports physical CSS properties. * * - Detects physical property names and suggests logical equivalents * - Detects physical directional values (e.g., text-align: left) * - Skips properties in the allow list * - Provides auto-fixes where unambiguous * - Traverses nested objects, @media, and selectors * * @param context ESLint rule context * @param node The ObjectExpression node representing the style object * @param allowSet Set of property names to skip */ export declare const processLogicalPropertiesInStyleObject: (context: Rule.RuleContext, node: TSESTree.ObjectExpression, allowSet: Set) => void;