/** * @fileoverview Check resolution and filtering for fitness recipe execution * * Resolves check slugs from recipe selectors and applies disabled-check filtering. */ import type { FitnessRecipe } from './types.js'; import type { Check, CheckRegistry } from '../framework/registry.js'; /** Options for {@link resolveAndFilterChecks}. */ export interface CheckResolutionOptions { /** Check slugs disabled via opensip.config.yml. */ disabledChecks?: readonly string[]; } /** * Resolve checks from a recipe selector and filter out disabled checks. * Force-included slugs from `recipe.includeDisabled` bypass the disabled filter. */ export declare function resolveAndFilterChecks(recipe: FitnessRecipe, checkRegistry: CheckRegistry, options: CheckResolutionOptions): Check[]; //# sourceMappingURL=service-check-resolution.d.ts.map