import type { Result } from "../result/result.js";
import type { ProjectSource } from "../project/project.js";
export type YarnSetVersionResult = Result<YarnSetVersionFailureReason>;
export interface YarnSetVersionFailureReason {
    readonly type: "yarn-set-version-failed";
}
export declare function yarnSetVersionStable(project: ProjectSource): Promise<YarnSetVersionResult>;
