import type { CommonContext } from "./definitions/context.js";
import type { Yarnrc } from "./definitions/yarnrc.js";
export declare function getYarnConfig({ cwd, logger, }: {
    cwd: CommonContext["cwd"];
    logger: CommonContext["logger"];
}): Promise<Yarnrc>;
