import type { CheckExecutionResultV2, CounterfactualControlV2, GlobalCounterfactualControlV2, RawCommandExecutionV2 } from "./long-task-delivery-types.js"; export interface PlaywrightCounterfactualClassification { accepted_test_failure_exit: boolean; normalized_result: CheckExecutionResultV2; rejection_reasons: string[]; } export declare function classifyPlaywrightCounterfactual(raw: RawCommandExecutionV2, result: CheckExecutionResultV2, control: CounterfactualControlV2 | GlobalCounterfactualControlV2): PlaywrightCounterfactualClassification;