import type { RunState } from '../engine/types.js'; export type CommandCheckScope = 'build' | 'verify'; export interface RecordedCommandCheck { sequence: number; timestamp: string; runId: string; scope: CommandCheckScope; command: string; exitCode: number; cwd: string; } export interface RecordCommandCheckInput { scope: CommandCheckScope; command: string; exitCode: number; cwd?: string; } export declare function recordCommandCheck(projectRoot: string, changeDir: string, run: RunState, input: RecordCommandCheckInput): Promise; export declare function latestCommandCheck(projectRoot: string, changeDir: string, run: RunState, scope: CommandCheckScope): Promise; //# sourceMappingURL=classic-command-checks.d.ts.map