import * as z from "zod/v3"; import { BulkReportCustomReportItem, BulkReportCustomReportItem$Outbound } from "./bulkreportcustomreportitem.js"; import { BulkReportGeneralLedgerItem, BulkReportGeneralLedgerItem$Outbound } from "./bulkreportgeneralledgeritem.js"; /** * A single report inside a bulk batch. Required fields depend on `report_type`: `custom_report` requires `columns` and `file_type`; `general_ledger` requires `payroll_uuid` and `aggregation`. */ export type BulkReportItem = BulkReportCustomReportItem | BulkReportGeneralLedgerItem; /** @internal */ export type BulkReportItem$Outbound = BulkReportCustomReportItem$Outbound | BulkReportGeneralLedgerItem$Outbound; /** @internal */ export declare const BulkReportItem$outboundSchema: z.ZodType; export declare function bulkReportItemToJSON(bulkReportItem: BulkReportItem): string; //# sourceMappingURL=bulkreportitem.d.ts.map