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