import type { ProjectSource } from "../project/project.js";
import type { Result } from "../result/result.js";
export type SetYarnLinkerResult = Result<SetYarnLinkerFailureReason>;
export interface SetYarnLinkerFailureReason {
    readonly type: "set-yarn-linker-failed";
}
export declare function setYarnLinkerToNodeModules(project: ProjectSource): Promise<SetYarnLinkerResult>;
