import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { LayoutResponseDto } from "./layoutresponsedto.js"; export type ListLayoutResponseDto = { /** * List of layouts */ layouts: Array; /** * Total number of layouts */ totalCount: number; }; /** @internal */ export declare const ListLayoutResponseDto$inboundSchema: z.ZodType; export declare function listLayoutResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listlayoutresponsedto.d.ts.map