import type { Rule } from 'eslint';
import { TSESTree } from '@typescript-eslint/utils';
/**
 * Recursively processes a vanilla-extract style object and reports occurrences of 'px' units.
 *
 * - Skips properties present in the allow list (supports camelCase and kebab-case).
 * - Traverses nested object values and delegates deeper traversal to callers for arrays/at-rules/selectors.
 * - Provides fix suggestions for string literals and simple template literals (no expressions).
 *
 * @param context ESLint rule context used to report diagnostics and apply suggestions.
 * @param node The ObjectExpression node representing the style object to inspect.
 * @param allowSet Set of property names (camelCase or kebab-case) that are allowed to contain 'px'.
 */
export declare const processNoPxUnitInStyleObject: (context: Rule.RuleContext, node: TSESTree.ObjectExpression, allowSet: Set<string>) => void;
