import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LayoutsControllerUpdateRequest = { layoutId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; /** * Layout update details */ updateLayoutDto: components.UpdateLayoutDto; }; export type LayoutsControllerUpdateResponse = { headers: { [k: string]: Array; }; result: components.LayoutResponseDto; }; /** @internal */ export type LayoutsControllerUpdateRequest$Outbound = { layoutId: string; "idempotency-key"?: string | undefined; UpdateLayoutDto: components.UpdateLayoutDto$Outbound; }; /** @internal */ export declare const LayoutsControllerUpdateRequest$outboundSchema: z.ZodType; export declare function layoutsControllerUpdateRequestToJSON(layoutsControllerUpdateRequest: LayoutsControllerUpdateRequest): string; /** @internal */ export declare const LayoutsControllerUpdateResponse$inboundSchema: z.ZodType; export declare function layoutsControllerUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=layoutscontrollerupdate.d.ts.map