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