import * as z from "zod/v3"; import * as components from "../components/index.js"; export type UpdateReportGlobals = { merchantAccountId?: string | undefined; }; export type UpdateReportRequest = { /** * The ID of the report to edit. */ reportId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; reportUpdate: components.ReportUpdate; }; /** @internal */ export type UpdateReportRequest$Outbound = { report_id: string; merchantAccountId?: string | null | undefined; ReportUpdate: components.ReportUpdate$Outbound; }; /** @internal */ export declare const UpdateReportRequest$outboundSchema: z.ZodType; export declare function updateReportRequestToJSON(updateReportRequest: UpdateReportRequest): string; //# sourceMappingURL=updatereport.d.ts.map