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