interface DoctorInfoOptions {
    packageJson?: string;
}
export declare function getInfoInternal(options: DoctorInfoOptions, silent?: boolean): Promise<{
    appName: string;
    appId: any;
    appVersion: any;
    webDir: string;
    installedDependencies: Record<string, string>;
    latestDependencies: Record<string, string>;
}>;
export declare function getInfo(options: DoctorInfoOptions): Promise<{
    appName: string;
    appId: any;
    appVersion: any;
    webDir: string;
    installedDependencies: Record<string, string>;
    latestDependencies: Record<string, string>;
}>;
export {};
