import type { HarnessEvent } from "../../../core/src/classify/classifier.js";
import type { AuthProof } from "../../../playwright/src/auth.js";
import { type RunCellInput } from "../../../playwright/src/cell-runner.js";
import type { ConsistencyCellEvidence } from "./types.js";
export type ConsistencyCellResult = {
    kind: "evidence";
    evidence: ConsistencyCellEvidence;
    authProof?: AuthProof;
} | {
    kind: "harness";
    outcome: HarnessEvent;
    partialEvidence?: ConsistencyCellEvidence;
};
export declare function runConsistencyCell(input: RunCellInput): Promise<ConsistencyCellResult>;
//# sourceMappingURL=capture.d.ts.map