import * as z from "zod/v3"; export type GetReportGlobals = { merchantAccountId?: string | undefined; }; export type GetReportRequest = { /** * The ID of the report to retrieve details for. */ reportId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetReportRequest$Outbound = { report_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetReportRequest$outboundSchema: z.ZodType; export declare function getReportRequestToJSON(getReportRequest: GetReportRequest): string; //# sourceMappingURL=getreport.d.ts.map