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