import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { BatchObjectItemResponse } from "./BatchObjectItemResponse"; import { BatchObjectStatus } from "./BatchObjectStatus"; export declare const BatchObject: core.serialization.ObjectSchema; export declare namespace BatchObject { interface Raw { item_id: string; status: BatchObjectStatus.Raw; response?: BatchObjectItemResponse.Raw | null; } }