import type { Rule } from 'eslint'; import { TSESTree } from '@typescript-eslint/utils'; /** * Processes a recipe object, removing empty `base` and `variants` properties, as well as empty * variant categories and values. * * @param ruleContext The ESLint rule context. * @param recipeNode The recipe object node to process. * @param reportedNodes A set of nodes that have already been reported by other processors. */ export declare const processRecipeProperties: (ruleContext: Rule.RuleContext, recipeNode: TSESTree.ObjectExpression, reportedNodes: Set) => void;