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 { GeometryCellEvidence } from "./types.js";
export type GeometryCellResult = {
    kind: "evidence";
    evidence: GeometryCellEvidence;
    authProof?: AuthProof;
} | {
    kind: "harness";
    outcome: HarnessEvent;
    partialEvidence?: GeometryCellEvidence;
};
export declare function runGeometryCell(input: RunCellInput): Promise<GeometryCellResult>;
//# sourceMappingURL=capture.d.ts.map