import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Resource type */ export declare const PathParamResourceType: { readonly Workflow: "workflow"; readonly Layout: "layout"; }; /** * Resource type */ export type PathParamResourceType = ClosedEnum; export type TranslationControllerGetSingleTranslationRequest = { /** * Resource type */ resourceType: PathParamResourceType; /** * Resource ID */ resourceId: string; /** * Locale code */ locale: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; /** @internal */ export declare const PathParamResourceType$outboundSchema: z.ZodNativeEnum; /** @internal */ export type TranslationControllerGetSingleTranslationRequest$Outbound = { resourceType: string; resourceId: string; locale: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const TranslationControllerGetSingleTranslationRequest$outboundSchema: z.ZodType; export declare function translationControllerGetSingleTranslationRequestToJSON(translationControllerGetSingleTranslationRequest: TranslationControllerGetSingleTranslationRequest): string; //# sourceMappingURL=translationcontrollergetsingletranslation.d.ts.map