import { V2_ContainerProps } from "@lifesg/react-design-system/v2_layout"; import { TComponentOmitProps, TFrontendEngineFieldSchema } from "../../frontend-engine"; import { IBaseElementSchema } from "../types"; type TCustomOptions = { gridType?: "v2" | "v3" | undefined; }; export interface IGridSchema extends Omit, "label">, TComponentOmitProps { children: Record>; customOptions?: TCustomOptions | undefined; } export {};