import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetMasterJsonResponseDto = { /** * All translations for given locale organized by workflow identifier */ workflows: { [k: string]: any; }; /** * All translations for given locale organized by layout identifier */ layouts: { [k: string]: any; }; }; /** @internal */ export declare const GetMasterJsonResponseDto$inboundSchema: z.ZodType; export declare function getMasterJsonResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getmasterjsonresponsedto.d.ts.map