import type { Rule } from 'eslint'; /** * Creates ESLint rule visitors for detecting and processing zero values with units 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. * @returns An object with visitor functions for the ESLint rule. */ export declare const createZeroUnitVisitors: (context: Rule.RuleContext) => Rule.RuleListener;