import { RootNodePackage } from './explainDependencies.types';
/** Spawn `npm explain [name] --json` and return the parsed JSON. Returns `null` if the requested package is not installed. */
export declare function explainAsync(packageName: string, projectRoot: string, parameters?: string[]): Promise<RootNodePackage[] | null>;
