import { type CometCurrentSelection } from '../comet-entry/current-selection.js'; export type CurrentChangeSelection = CometCurrentSelection; export type CurrentChangeResolution = { status: 'selected'; selection: CurrentChangeSelection; } | { status: 'missing'; } | { status: 'stale'; reason: string; }; export declare function currentChangeFile(projectRoot: string): string; export declare function selectCurrentChange(projectRoot: string, changeName: string): Promise; export declare function resolveCurrentChange(projectRoot: string): Promise; export declare function clearCurrentChange(projectRoot: string): Promise; export declare function clearCurrentChangeIf(projectRoot: string, change: string): Promise; //# sourceMappingURL=classic-current-change.d.ts.map