import type { CompiledCheckV2, EvidenceCapabilityRecordV2 } from "./long-task-delivery-types.js"; export { designMethodAttachmentName, semanticFactAttachmentName, } from "./long-task-playwright-capability-records.js"; export interface PlaywrightEvidence { observations: Record; evidence_records: EvidenceCapabilityRecordV2[]; error: string | null; } export declare function extractPlaywrightEvidence(check: CompiledCheckV2, report: Record, exitCode: number): PlaywrightEvidence;