import { LitComponentImplementation } from "../../types.cjs"; import "../../index.cjs"; import { z } from "zod"; //#region src/web-components/catalog/minimal/row.d.ts declare const RowSchema: z.ZodObject<{ children: z.ZodUnion<[z.ZodArray, z.ZodObject<{ componentId: z.ZodString; path: z.ZodString; }, "strip", z.ZodTypeAny, { componentId: string; path: string; }, { componentId: string; path: string; }>]>; justify: z.ZodOptional>; align: z.ZodOptional>; }, "strip", z.ZodTypeAny, { children?: string[] | { componentId: string; path: string; }; justify?: "center" | "start" | "end" | "spaceBetween" | "spaceAround" | "spaceEvenly" | "stretch"; align?: "center" | "start" | "end" | "stretch"; }, { children?: string[] | { componentId: string; path: string; }; justify?: "center" | "start" | "end" | "spaceBetween" | "spaceAround" | "spaceEvenly" | "stretch"; align?: "center" | "start" | "end" | "stretch"; }>; declare const RowApiDef: { name: string; schema: z.ZodObject<{ children: z.ZodUnion<[z.ZodArray, z.ZodObject<{ componentId: z.ZodString; path: z.ZodString; }, "strip", z.ZodTypeAny, { componentId: string; path: string; }, { componentId: string; path: string; }>]>; justify: z.ZodOptional>; align: z.ZodOptional>; }, "strip", z.ZodTypeAny, { children?: string[] | { componentId: string; path: string; }; justify?: "center" | "start" | "end" | "spaceBetween" | "spaceAround" | "spaceEvenly" | "stretch"; align?: "center" | "start" | "end" | "stretch"; }, { children?: string[] | { componentId: string; path: string; }; justify?: "center" | "start" | "end" | "spaceBetween" | "spaceAround" | "spaceEvenly" | "stretch"; align?: "center" | "start" | "end" | "stretch"; }>; }; declare const Row: LitComponentImplementation; //#endregion export { Row, RowApiDef, RowSchema }; //# sourceMappingURL=row.d.cts.map