import type { Rule } from 'eslint';
import type { NoUnitlessValuesOptions } from './unitless-value-processor.js';
/**
 * Creates ESLint rule visitors for detecting unitless numeric values in style-related function calls.
 * Uses reference tracking to automatically detect vanilla-extract functions based on their import statements.
 *
 * @param context The ESLint rule context.
 * @param options Rule options including allowed property names.
 * @returns An object with visitor functions for the ESLint rule.
 */
export declare const createUnitlessValueVisitors: (context: Rule.RuleContext, options?: NoUnitlessValuesOptions) => Rule.RuleListener;
