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