import * as z from "zod/v3"; export type ImportMasterJsonRequestDto = { /** * The locale for which translations are being imported */ locale: string; /** * Master JSON object containing all translations organized by workflow identifier */ masterJson: { [k: string]: any; }; }; /** @internal */ export type ImportMasterJsonRequestDto$Outbound = { locale: string; masterJson: { [k: string]: any; }; }; /** @internal */ export declare const ImportMasterJsonRequestDto$outboundSchema: z.ZodType; export declare function importMasterJsonRequestDtoToJSON(importMasterJsonRequestDto: ImportMasterJsonRequestDto): string; //# sourceMappingURL=importmasterjsonrequestdto.d.ts.map