import type * as HydraDB from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { IngestionV2IngestResultItem } from "./IngestionV2IngestResultItem.js"; export declare const IngestionV2IngestResponse: core.serialization.ObjectSchema; export declare namespace IngestionV2IngestResponse { interface Raw { failed_count?: number | null; message?: string | null; results?: IngestionV2IngestResultItem.Raw[] | null; success?: boolean | null; success_count?: number | null; } }