import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The resource type to associate translation with */ export declare const ResourceType: { readonly Workflow: "workflow"; readonly Layout: "layout"; }; /** * The resource type to associate translation with */ export type ResourceType = ClosedEnum; export type CreateTranslationRequestDto = { /** * The resource ID to associate translation with. Accepts identifier or slug format */ resourceId: string; /** * The resource type to associate translation with */ resourceType: ResourceType; /** * Locale code (e.g., en_US, es_ES) */ locale: string; /** * Translation content as JSON object */ content: { [k: string]: any; }; }; /** @internal */ export declare const ResourceType$outboundSchema: z.ZodNativeEnum; /** @internal */ export type CreateTranslationRequestDto$Outbound = { resourceId: string; resourceType: string; locale: string; content: { [k: string]: any; }; }; /** @internal */ export declare const CreateTranslationRequestDto$outboundSchema: z.ZodType; export declare function createTranslationRequestDtoToJSON(createTranslationRequestDto: CreateTranslationRequestDto): string; //# sourceMappingURL=createtranslationrequestdto.d.ts.map