import { TComponentOmitProps, TFrontendEngineFieldSchema } from "../../frontend-engine"; import { IBaseElementSchema } from "../types"; import { TWrapperSchema } from "../wrapper"; type TCustomOptions = { gridType?: "v2" | "v3" | undefined; }; export interface ISectionSchema extends IBaseElementSchema<"section">, TComponentOmitProps { children: Record>; layoutType?: "default" | "grid" | "contain" | undefined; customOptions?: TCustomOptions | undefined; } export interface ISectionProps { id: string; sectionSchema: ISectionSchema; } export {};