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