import type { Result } from "../result/result.js";
import type { ProjectSource } from "../project/project.js";
export type YarnInstallResult = Result<YarnInstallFailureReason>;
export interface YarnInstallFailureReason {
    readonly type: "yarn-install-failed";
}
export declare function yarnInstall(project: ProjectSource): Promise<YarnInstallResult>;
