import type { PathExists } from './context.js';
export declare const getRunScriptCommand: ({ pathExists, packageJsonPath, }: {
    pathExists: PathExists;
    packageJsonPath: string;
}) => Promise<"yarn" | "npm run">;
