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