import * as z from "zod/v3"; export type DuplicateLayoutDto = { /** * Name of the layout */ name: string; /** * Identifier for the duplicated layout. When omitted, it is derived from the name. */ layoutId?: string | undefined; /** * Enable or disable translations for this layout */ isTranslationEnabled?: boolean | undefined; }; /** @internal */ export type DuplicateLayoutDto$Outbound = { name: string; layoutId?: string | undefined; isTranslationEnabled: boolean; }; /** @internal */ export declare const DuplicateLayoutDto$outboundSchema: z.ZodType; export declare function duplicateLayoutDtoToJSON(duplicateLayoutDto: DuplicateLayoutDto): string; //# sourceMappingURL=duplicatelayoutdto.d.ts.map