import * as z from "zod/v3"; import { BulkReportItem, BulkReportItem$Outbound } from "./bulkreportitem.js"; /** * Each `batch` item is a `custom_report` or a `general_ledger` report. */ export type BulkReportBody = { /** * One report per item. Up to 25 items per batch, across any combination of companies the partner is mapped to. */ batch: Array; }; /** @internal */ export type BulkReportBody$Outbound = { batch: Array; }; /** @internal */ export declare const BulkReportBody$outboundSchema: z.ZodType; export declare function bulkReportBodyToJSON(bulkReportBody: BulkReportBody): string; //# sourceMappingURL=bulkreportbody.d.ts.map