import * as z from "zod/v3"; import * as components from "../components/index.js"; export type AddReportGlobals = { merchantAccountId?: string | undefined; }; export type AddReportRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; reportCreate: components.ReportCreate; }; /** @internal */ export type AddReportRequest$Outbound = { merchantAccountId?: string | null | undefined; ReportCreate: components.ReportCreate$Outbound; }; /** @internal */ export declare const AddReportRequest$outboundSchema: z.ZodType; export declare function addReportRequestToJSON(addReportRequest: AddReportRequest): string; //# sourceMappingURL=addreport.d.ts.map