import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { ParsedLabReportData } from "./ParsedLabReportData.js"; import { ParsingJobStatus } from "./ParsingJobStatus.js"; export declare const ParsingJob: core.serialization.ObjectSchema; export declare namespace ParsingJob { interface Raw { id: string; job_id: string; status: ParsingJobStatus.Raw; data?: ParsedLabReportData.Raw | null; needs_human_review: boolean; is_reviewed: boolean; } }