import * as z from "zod/v3"; import { LayoutCreationSourceEnum } from "./layoutcreationsourceenum.js"; export type CreateLayoutDto = { /** * Unique identifier for the layout */ layoutId: string; /** * Name of the layout */ name: string; /** * Enable or disable translations for this layout */ isTranslationEnabled?: boolean | undefined; /** * Source of layout creation */ source?: LayoutCreationSourceEnum | undefined; }; /** @internal */ export type CreateLayoutDto$Outbound = { layoutId: string; name: string; isTranslationEnabled: boolean; __source: string; }; /** @internal */ export declare const CreateLayoutDto$outboundSchema: z.ZodType; export declare function createLayoutDtoToJSON(createLayoutDto: CreateLayoutDto): string; //# sourceMappingURL=createlayoutdto.d.ts.map