import type { ExpoConfig, PackageJSONConfig } from '@expo/config';
import type { DoctorCheck } from '../checks/checks.types';
/**
 * Resolves the checks that should be run for a given project.
 * @param exp - The Expo config.
 * @param pkg - The package.json config.
 * @returns The checks that should be run.
 */
export declare function resolveChecksInScope(exp: ExpoConfig, pkg: PackageJSONConfig): DoctorCheck[];
