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