import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { BatchObject } from "./BatchObject"; import { BatchObjectsResponseStatus } from "./BatchObjectsResponseStatus"; export declare const BatchObjectsResponse: core.serialization.ObjectSchema; export declare namespace BatchObjectsResponse { interface Raw { batch_id: string; status: BatchObjectsResponseStatus.Raw; total_count: number; objects: BatchObject.Raw[]; } }