import type { DoctorCheck, DoctorCheckParams, DoctorCheckResult } from './checks.types';
export declare class ExpoConfigCommonIssueCheck implements DoctorCheck {
    description: string;
    sdkVersionRange: string;
    runAsync({ projectRoot, exp, hasUnusedStaticConfig, staticConfigPath, dynamicConfigPath, }: DoctorCheckParams): Promise<DoctorCheckResult>;
}
